コード例 #1
0
 /// <summary>
 /// Converts the string representation of a style to its <see cref="Style"/> equivalent.
 /// </summary>
 /// <param name="text">A string containing a style to parse.</param>
 /// <returns>A <see cref="Style"/> equivalent of the text contained in <paramref name="text"/>.</returns>
 public static Style Parse(string text)
 {
     return(StyleParser.Parse(text));
 }