Ext.Net.CSS.UpdateRule C# (CSharp) Method

UpdateRule() public static method

Updates a rule property
public static UpdateRule ( string selector, string property, string value ) : void
selector string Selector to update
property string The css property
value string The new value for the property
return void
        public static void UpdateRule(string selector, string property, string value)
        {
            new CSS().Call("updateRule", selector, property, value);
        }