TextDecorationCollectionConverter.ConvertFromString(String) Method
Definition
Important
Some information relates to prerelease product that may be substantially modified before it’s released. Microsoft makes no warranties, express or implied, with respect to the information provided here.
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.