Run 생성자
정의
중요
일부 정보는 릴리스되기 전에 상당 부분 수정될 수 있는 시험판 제품과 관련이 있습니다. Microsoft는 여기에 제공된 정보에 대해 어떠한 명시적이거나 묵시적인 보증도 하지 않습니다.
Run 클래스의 새 인스턴스를 초기화합니다.
오버로드
Run() |
Run 클래스의 새 기본 인스턴스를 초기화합니다. |
Run(String) |
지정된 문자열을 텍스트 런(Text Run)의 초기 콘텐츠로 사용하여 Run 클래스의 새 인스턴스를 초기화합니다. |
Run(String, TextPointer) |
지정된 문자열을 텍스트 런의 초기 콘텐츠로 사용하는 Run 클래스의 새 인스턴스 및 텍스트 런의 삽입 위치를 지정하는 TextPointer를 초기화합니다. |
Run()
Run(String)
지정된 문자열을 텍스트 런(Text Run)의 초기 콘텐츠로 사용하여 Run 클래스의 새 인스턴스를 초기화합니다.
public:
Run(System::String ^ text);
public Run (string text);
new System.Windows.Documents.Run : string -> System.Windows.Documents.Run
Public Sub New (text As String)
매개 변수
예제
다음 예제에서는이 생성자를 사용 하는 방법을 보여 줍니다.
Run textRun = new Run("The text contents of this text run.");
Dim textRun As New Run("The text contents of this text run.")
적용 대상
Run(String, TextPointer)
지정된 문자열을 텍스트 런의 초기 콘텐츠로 사용하는 Run 클래스의 새 인스턴스 및 텍스트 런의 삽입 위치를 지정하는 TextPointer를 초기화합니다.
public:
Run(System::String ^ text, System::Windows::Documents::TextPointer ^ insertionPosition);
public Run (string text, System.Windows.Documents.TextPointer insertionPosition);
new System.Windows.Documents.Run : string * System.Windows.Documents.TextPointer -> System.Windows.Documents.Run
Public Sub New (text As String, insertionPosition As TextPointer)
매개 변수
- insertionPosition
- TextPointer
텍스트 런을 만든 후 삽입 위치를 지정하는 TextPointer입니다. 자동으로 삽입되지 않는 경우 null
입니다.
예제
다음 예제에서는이 생성자를 사용 하는 방법을 보여 줍니다.
// Create a new, empty paragraph to host the text run.
Paragraph par = new Paragraph();
// Get a TextPointer for the end of content in the paragraph.
TextPointer insertionPoint = par.ContentEnd;
// This line will create a new text run, initialize it with the supplied string,
// and insert it at the specified insertion point (which happens to be the end of
// content for the host paragraph).
Run textRun = new Run("The text contents of this text run.", insertionPoint);
' Create a new, empty paragraph to host the text run.
Dim par As New Paragraph()
' Get a TextPointer for the end of content in the paragraph.
Dim insertionPoint As TextPointer = par.ContentEnd
' This line will create a new text run, initialize it with the supplied string,
' and insert it at the specified insertion point (which happens to be the end of
' content for the host paragraph).
Dim textRun2 As New Run("The text contents of this text run.", insertionPoint)