次の方法で共有


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 値。

適用対象