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

要用于 characterString 中字符的 TextRunProperties 值。

适用于

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

要用于 unsafeCharacterString 中字符的 TextRunProperties 值。

属性

适用于

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

要用于 characterArray 中字符的 TextRunProperties 值。

适用于

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

要用于 characterString 中字符的 TextRunProperties 值。

适用于