Bagikan melalui


Run Konstruktor

Definisi

Menginisialisasi instans baru kelas Run.

Overload

Run()

Menginisialisasi instans default baru dari kelas Run.

Run(String)

Menginisialisasi instans baru kelas Run, mengambil string tertentu sebagai konten awal eksekusi teks.

Run(String, TextPointer)

Menginisialisasi instans baru kelas Run, mengambil string tertentu sebagai konten awal eksekusi teks, dan TextPointer menentukan posisi penyisipan untuk eksekusi teks.

Run()

Menginisialisasi instans default baru dari kelas Run.

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

Berlaku untuk

Run(String)

Menginisialisasi instans baru kelas Run, mengambil string tertentu sebagai konten awal eksekusi teks.

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)

Parameter

text
String

String yang menentukan konten awal objek Run.

Contoh

Contoh berikut menunjukkan penggunaan konstruktor ini.

Run textRun = new Run("The text contents of this text run.");
Dim textRun As New Run("The text contents of this text run.")

Berlaku untuk

Run(String, TextPointer)

Menginisialisasi instans baru kelas Run, mengambil string tertentu sebagai konten awal eksekusi teks, dan TextPointer menentukan posisi penyisipan untuk eksekusi teks.

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)

Parameter

text
String

String yang menentukan konten awal objek Run.

insertionPosition
TextPointer

TextPointer menentukan posisi penyisipan untuk menyisipkan eksekusi teks setelah dibuat, atau null tanpa penyisipan otomatis.

Contoh

Contoh berikut menunjukkan penggunaan konstruktor ini.

// 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)

Berlaku untuk