C\#Word 텍스트 상자 에서 텍스트 방향 을 바 꾸 는 방법 설정
본 고 는 C\#프로그램 코드 를 예 로 들 어 이런 레이아웃 을 어떻게 실현 하 는 지 보 여줄 것 이다.참고 로 VB.NET 코드 를 추가 합 니 다.
테스트 프로그램 환경 은 다음 과 같 습 니 다.
텍스트 방향 을 설정 할 때 그림 과 같은 다양한 방식 을 지원 할 수 있 습 니 다.
이번 목표 형식 은 Left ToRight 형식 을 사용 하면 됩 니 다.세로 디 스 플레이 를 설정 하려 면 Left ToRight Rotated 형식 을 선택 하고 다른 텍스트 회전 형식 은 같 습 니 다.
C#
using Spire.Doc;
using Spire.Doc.Documents;
using Spire.Doc.Fields;
using System.Drawing;
namespace SetTextDirection
{
class Program
{
static void Main(string[] args)
{
// document
Document doc = new Document();
// section
Section section = doc.AddSection();
//
section.PageSetup.Margins.Left = 90;
section.PageSetup.Margins.Right = 90;
Paragraph paragraph = section.AddParagraph();
//
TextBox textBox1 = paragraph.AppendTextBox(section.PageSetup.Margins.Left - 20, section.PageSetup.PageSize.Height + 20);
//
textBox1.Format.HorizontalOrigin = HorizontalOrigin.Page;
textBox1.Format.HorizontalPosition = 0;
textBox1.Format.VerticalPosition = -10f;
textBox1.Format.VerticalOrigin = VerticalOrigin.Page;
//
textBox1.Format.TextAnchor = ShapeVerticalAlignment.Center;
textBox1.Format.LayoutFlowAlt = TextDirection.LeftToRight;//
//textBox1.Format.LayoutFlowAlt = TextDirection.LeftToRightRotated;//
//
Paragraph textboxPara1 = textBox1.Body.AddParagraph();
TextRange txtrg = textboxPara1.AppendText(" ______________ ______________ ______________");
txtrg.CharacterFormat.FontName = " ";
txtrg.CharacterFormat.FontSize = 10;
txtrg.CharacterFormat.TextColor = Color.Black;
textboxPara1.Format.HorizontalAlignment = HorizontalAlignment.Center;
//
doc.SaveToFile("Result.docx",FileFormat.Docx2013);
System.Diagnostics.Process.Start("Result.docx");
}
}
}
VB.NET
Imports Spire.Doc
Imports Spire.Doc.Documents
Imports Spire.Doc.Fields
Imports System.Drawing
Namespace SetTextDirection
Class Program
Private Shared Sub Main(args As String())
' document
Dim doc As New Document()
' section
Dim section As Section = doc.AddSection()
'
section.PageSetup.Margins.Left = 90
section.PageSetup.Margins.Right = 90
Dim paragraph As Paragraph = section.AddParagraph()
'
Dim textBox1 As TextBox = paragraph.AppendTextBox(section.PageSetup.Margins.Left - 20, section.PageSetup.PageSize.Height + 20)
'
textBox1.Format.HorizontalOrigin = HorizontalOrigin.Page
textBox1.Format.HorizontalPosition = 0
textBox1.Format.VerticalPosition = -10F
textBox1.Format.VerticalOrigin = VerticalOrigin.Page
'
textBox1.Format.TextAnchor = ShapeVerticalAlignment.Center
textBox1.Format.LayoutFlowAlt = TextDirection.LeftToRight'
'textBox1.Format.LayoutFlowAlt = TextDirection.LeftToRightRotated; '
'
Dim textboxPara1 As Paragraph = textBox1.Body.AddParagraph()
Dim txtrg As TextRange = textboxPara1.AppendText(" ______________ ______________ ______________")
txtrg.CharacterFormat.FontName = " "
txtrg.CharacterFormat.FontSize = 10
txtrg.CharacterFormat.TextColor = Color.Black
textboxPara1.Format.HorizontalAlignment = HorizontalAlignment.Center
'
doc.SaveToFile("Result.docx", FileFormat.Docx2013)
System.Diagnostics.Process.Start("Result.docx")
End Sub
End Class
End Namespace
C\#Word 텍스트 상자 에서 텍스트 방향 을 바 꾸 는 방법 을 설정 하 는 이 글 은 여기까지 소개 되 었 습 니 다.더 많은 관련 C\#Word 에서 텍스트 방향 을 바 꾸 는 내용 은 우리 의 이전 글 을 검색 하거나 아래 의 관련 글 을 계속 찾 아 보 세 요.앞으로 많은 응원 부 탁 드 리 겠 습 니 다!
이 내용에 흥미가 있습니까?
현재 기사가 여러분의 문제를 해결하지 못하는 경우 AI 엔진은 머신러닝 분석(스마트 모델이 방금 만들어져 부정확한 경우가 있을 수 있음)을 통해 가장 유사한 기사를 추천합니다:
WebView2를 Visual Studio 2017 Express에서 사용할 수 있을 때까지Evergreen .Net Framework SDK 4.8 VisualStudio2017에서 NuGet을 사용하기 때문에 패키지 관리 방법을 packages.config 대신 PackageReference를 사용해야...
텍스트를 자유롭게 공유하거나 복사할 수 있습니다.하지만 이 문서의 URL은 참조 URL로 남겨 두십시오.
CC BY-SA 2.5, CC BY-SA 3.0 및 CC BY-SA 4.0에 따라 라이센스가 부여됩니다.