Class SvgCssUtils
Utility class that facilitates parsing values from CSS.
public sealed class SvgCssUtils
- Inheritance
-
SvgCssUtils
- Inherited Members
Methods
ConvertDoubleToString(double)
Converts a double to a String.
public static string ConvertDoubleToString(double value)
Parameters
value
doubleto be converted double value
Returns
- string
the value in a String representation
ConvertFloatToString(float)
Converts a float to a String.
public static string ConvertFloatToString(float value)
Parameters
value
floatto be converted float value
Returns
- string
the value in a String representation
SplitValueList(string)
Splits a given String into a list of substrings.
public static IList<string> SplitValueList(string value)
Parameters
value
stringthe string to be split
Returns
Remarks
Splits a given String into a list of substrings. The string is split up by commas and whitespace characters (\t, \n, \r, \f).