System.ZXPCRectangle.Convert C# (CSharp) Method

Convert() public method

public Convert ( object value ) : string
value object
return string
        public string Convert(object value)
        {
            if(value == null) return "Null";
            Rectangle v = (Rectangle)value;
            if(v == null) return "Null";
            return string.Format("{0} , {1} , {2}, {3}", v.X, v.Y, v.Width, v.Height);
        }

Same methods

ZXPCRectangle::Convert ( string s, object &value ) : bool
ZXPCRectangle