共用方式為


TextCharacters 建構函式

定義

初始化 TextCharacters 類別的新執行個體。

多載

TextCharacters(String, TextRunProperties)

使用指定的字元字串來初始化 TextCharacters 類別的新執行個體。

TextCharacters(Char*, Int32, TextRunProperties)

使用指定的不安全字元字串來初始化 TextCharacters 類別的新執行個體。

TextCharacters(Char[], Int32, Int32, TextRunProperties)

使用指定的字元陣列,初始化 TextCharacters 類別的新執行個體。

TextCharacters(String, Int32, Int32, TextRunProperties)

使用指定的字元子字串來初始化 TextCharacters 類別的新執行個體。

TextCharacters(String, TextRunProperties)

使用指定的字元字串來初始化 TextCharacters 類別的新執行個體。

public:
 TextCharacters(System::String ^ characterString, System::Windows::Media::TextFormatting::TextRunProperties ^ textRunProperties);
public TextCharacters (string characterString, System.Windows.Media.TextFormatting.TextRunProperties textRunProperties);
new System.Windows.Media.TextFormatting.TextCharacters : string * System.Windows.Media.TextFormatting.TextRunProperties -> System.Windows.Media.TextFormatting.TextCharacters
Public Sub New (characterString As String, textRunProperties As TextRunProperties)

參數

characterString
String

內含文字字元的 String

textRunProperties
TextRunProperties

TextRunProperties 值,要用於 characterString 中的字元。

適用於

TextCharacters(Char*, Int32, TextRunProperties)

重要

此 API 不符合 CLS 規範。

使用指定的不安全字元字串來初始化 TextCharacters 類別的新執行個體。

public:
 TextCharacters(char* unsafeCharacterString, int length, System::Windows::Media::TextFormatting::TextRunProperties ^ textRunProperties);
[System.CLSCompliant(false)]
[System.Security.SecurityCritical]
public TextCharacters (char* unsafeCharacterString, int length, System.Windows.Media.TextFormatting.TextRunProperties textRunProperties);
[System.CLSCompliant(false)]
public TextCharacters (char* unsafeCharacterString, int length, System.Windows.Media.TextFormatting.TextRunProperties textRunProperties);
[<System.CLSCompliant(false)>]
[<System.Security.SecurityCritical>]
new System.Windows.Media.TextFormatting.TextCharacters : nativeptr<char> * int * System.Windows.Media.TextFormatting.TextRunProperties -> System.Windows.Media.TextFormatting.TextCharacters
[<System.CLSCompliant(false)>]
new System.Windows.Media.TextFormatting.TextCharacters : nativeptr<char> * int * System.Windows.Media.TextFormatting.TextRunProperties -> System.Windows.Media.TextFormatting.TextCharacters

參數

unsafeCharacterString
Char*

字元字串的指標。

length
Int32

unsafeCharacterString 中所使用的字元長度。

textRunProperties
TextRunProperties

TextRunProperties 值,要用於 unsafeCharacterString 中的字元。

屬性

適用於

TextCharacters(Char[], Int32, Int32, TextRunProperties)

使用指定的字元陣列,初始化 TextCharacters 類別的新執行個體。

public:
 TextCharacters(cli::array <char> ^ characterArray, int offsetToFirstChar, int length, System::Windows::Media::TextFormatting::TextRunProperties ^ textRunProperties);
public TextCharacters (char[] characterArray, int offsetToFirstChar, int length, System.Windows.Media.TextFormatting.TextRunProperties textRunProperties);
new System.Windows.Media.TextFormatting.TextCharacters : char[] * int * int * System.Windows.Media.TextFormatting.TextRunProperties -> System.Windows.Media.TextFormatting.TextCharacters
Public Sub New (characterArray As Char(), offsetToFirstChar As Integer, length As Integer, textRunProperties As TextRunProperties)

參數

characterArray
Char[]

Char 陣列。

offsetToFirstChar
Int32

characterArray 中所使用的第一個字元的位移。

length
Int32

characterArray 中所使用的字元長度。

textRunProperties
TextRunProperties

TextRunProperties 值,要用於 characterArray 中的字元。

適用於

TextCharacters(String, Int32, Int32, TextRunProperties)

使用指定的字元子字串來初始化 TextCharacters 類別的新執行個體。

public:
 TextCharacters(System::String ^ characterString, int offsetToFirstChar, int length, System::Windows::Media::TextFormatting::TextRunProperties ^ textRunProperties);
public TextCharacters (string characterString, int offsetToFirstChar, int length, System.Windows.Media.TextFormatting.TextRunProperties textRunProperties);
new System.Windows.Media.TextFormatting.TextCharacters : string * int * int * System.Windows.Media.TextFormatting.TextRunProperties -> System.Windows.Media.TextFormatting.TextCharacters
Public Sub New (characterString As String, offsetToFirstChar As Integer, length As Integer, textRunProperties As TextRunProperties)

參數

characterString
String

內含文字字元的 String

offsetToFirstChar
Int32

characterString 中所使用的第一個字元的位移。

length
Int32

characterString 中所使用的字元長度。

textRunProperties
TextRunProperties

TextRunProperties 值,要用於 characterString 中的字元。

適用於