Svg.SvgUnit.SvgUnit C# (CSharp) Method

SvgUnit() public method

Initializes a new instance of the SvgUnit struct.
public SvgUnit ( float value ) : System
value float The value.
return System
        public SvgUnit(float value)
        {
            this._isEmpty = false;
            this._value = value;
            this._type = SvgUnitType.User;
            this._deviceValue = null;
        }

Same methods

SvgUnit::SvgUnit ( SvgUnitType type, float value ) : System