GoDigram for .NET Framework and .NET Core
Northwoods.Go.Xml Namespace / GoXmlTransformer Class / PointFArrayFromString Method
the string to parse
the default value to return if the string is null or there is a syntax or range error
In This Topic
    PointFArrayFromString Method
    In This Topic
    Parse a string value as an array of PointF.
    Syntax
    public PointF[] PointFArrayFromString( 
       string str,
       PointF[] def
    )

    Parameters

    str
    the string to parse
    def
    the default value to return if the string is null or there is a syntax or range error

    Return Value

    An array of PointFs parsed from the string str; if there is a parsing exception, this method returns the value of def.
    Remarks
    You can convert a value to a string by calling WriteAttrVal(String,PointF[]) and passing null as the first argument (the attribute name).
    See Also