SharpVectors.Dom.Css.CssPrimitiveValue.SetStringValue C# (CSharp) Method

SetStringValue() public method

A method to set the string value with the specified unit. If the property attached to this value can't accept the specified unit or the string value, the value will be unchanged and a DOMException will be raised.
INVALID_ACCESS_ERR: Raised if the CSS value doesn't contain a string value. NO_MODIFICATION_ALLOWED_ERR: Raised if this property is readonly.
public SetStringValue ( CssPrimitiveType stringType, string stringValue ) : void
stringType CssPrimitiveType A string code as defined above. The string code can only be a string unit type (i.e. CSS_STRING, CSS_URI, CSS_IDENT, and CSS_ATTR).
stringValue string The new string value
return void
        public virtual void SetStringValue(CssPrimitiveType stringType, string stringValue)
        {
            throw new NotImplementedException("SetStringValue");
        }