다음을 통해 공유


Run 생성자

정의

Run 클래스의 새 인스턴스를 초기화합니다.

오버로드

Run()

Run 클래스의 새 기본 인스턴스를 초기화합니다.

Run(String)

지정된 문자열을 텍스트 런(Text Run)의 초기 콘텐츠로 사용하여 Run 클래스의 새 인스턴스를 초기화합니다.

Run(String, TextPointer)

지정된 문자열을 텍스트 런의 초기 콘텐츠로 사용하는 Run 클래스의 새 인스턴스 및 텍스트 런의 삽입 위치를 지정하는 TextPointer를 초기화합니다.

Run()

Run 클래스의 새 기본 인스턴스를 초기화합니다.

public:
 Run();
public Run ();
Public Sub New ()

적용 대상

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)

매개 변수

text
String

Run 개체의 초기 콘텐츠를 지정하는 문자열입니다.

예제

다음 예제에서는이 생성자를 사용 하는 방법을 보여 줍니다.

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)

매개 변수

text
String

Run 개체의 초기 콘텐츠를 지정하는 문자열입니다.

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)

적용 대상