Svg.SvgUnit.SvgUnit C# (CSharp) Method

SvgUnit() public method

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

Same methods

SvgUnit::SvgUnit ( float value ) : System