Bookmark.Orientation 속성
텍스트 방향 기능이 사용되는 경우 Bookmark 컨트롤의 텍스트 방향을 가져오거나 설정합니다.
네임스페이스: Microsoft.Office.Tools.Word
어셈블리: Microsoft.Office.Tools.Word(Microsoft.Office.Tools.Word.dll)
구문
‘선언
Property Orientation As WdTextOrientation
Get
Set
WdTextOrientation Orientation { get; set; }
속성 값
형식: Microsoft.Office.Interop.Word.WdTextOrientation
WdTextOrientation 값 중 하나입니다.
설명
선택 또는 설치한 지원 언어(예: 미국 영어)에 따라 위에 나열된 상수 중 일부를 사용하지 못할 수도 있습니다. 미국 영어)에 따라서는 이 인수 중 일부를 사용하지 못할 수도 있습니다.
예제
다음 코드 예제에서는 텍스트가 있는 Bookmark 컨트롤을 첫 번째 단락에 추가하고 책갈피 텍스트의 방향을 wdTextOrientationVerticalFarEast로 설정합니다.
이 예제는 문서 수준 사용자 지정을 위한 것입니다.
Private Sub BookmarkOrientation()
Me.Paragraphs(1).Range.InsertParagraphBefore()
Dim Bookmark1 As Microsoft.Office.Tools.Word.Bookmark = _
Me.Controls.AddBookmark(Me.Paragraphs(1).Range, "Bookmark1")
Bookmark1.Text = "sample text."
Bookmark1.Orientation = Word.WdTextOrientation _
.wdTextOrientationVerticalFarEast
End Sub
private void BookmarkOrientation()
{
this.Paragraphs[1].Range.InsertParagraphBefore();
Microsoft.Office.Tools.Word.Bookmark bookmark1 =
this.Controls.AddBookmark(this.Paragraphs[1].Range,
"bookmark1");
bookmark1.Text = "sample text.";
bookmark1.Orientation = Word.WdTextOrientation.wdTextOrientationVerticalFarEast;
}
.NET Framework 보안
- 직접 실행 호출자의 경우 완전히 신뢰합니다. 이 멤버는 부분적으로 신뢰할 수 있는 코드에서 사용할 수 없습니다. 자세한 내용은 부분 신뢰 코드에서 라이브러리 사용을 참조하십시오.