TextDecorationCollectionConverter.ConvertFromString(String) Method

Definition

Attempts to convert a specified string to an instance of TextDecorationCollection.

public:
 static System::Windows::TextDecorationCollection ^ ConvertFromString(System::String ^ text);
public static System.Windows.TextDecorationCollection ConvertFromString (string text);
static member ConvertFromString : string -> System.Windows.TextDecorationCollection
Public Shared Function ConvertFromString (text As String) As TextDecorationCollection

Parameters

text
String

The String to be converted into the TextDecorationCollection object.

Returns

The instance of TextDecorationCollection created from the converted text.

Remarks

The string value of the text parameter can either be "None", or a combination of the predefined TextDecoration names delimited by commas, such as "Underline, Strikethrough". The names are case-insensitive values.

One or more blanks spaces can precede or follow each text decoration name or comma. In addition, duplicate text decoration names are not allowed.

Applies to