Adf.Web.UI.Extensions.WebControlExtensions.ToggleStyle C# (CSharp) Method

ToggleStyle() public static method

public static ToggleStyle ( this control, CssClass style ) : WebControl
control this
style CssClass
return System.Web.UI.WebControls.WebControl
        public static WebControl ToggleStyle(this WebControl control, CssClass style)
        {
            return control.ToggleStyle(style.Name);
        }

Same methods

WebControlExtensions::ToggleStyle ( this control, bool needsstyle, CssClass style ) : WebControl
WebControlExtensions::ToggleStyle ( this control, bool needsstyle, CssClass styletrue, CssClass stylefalse ) : WebControl
WebControlExtensions::ToggleStyle ( this control, bool needsstyle, string style ) : WebControl
WebControlExtensions::ToggleStyle ( this control, bool needsstyle, string styletrue, string stylefalse ) : WebControl
WebControlExtensions::ToggleStyle ( this control, string style ) : WebControl
WebControlExtensions