BootstrapComponents.Components.Buttons.ButtonSettings.SetDisabled C# (CSharp) Method

SetDisabled() public method

public SetDisabled ( bool disabled = true ) : ButtonSettings
disabled bool
return ButtonSettings
        public ButtonSettings SetDisabled(bool disabled = true)
        {
            IsDisabled = disabled;
            return this;
        }