GroupBoxExtensions
Wisej.Web.Markup.GroupBoxExtensions
Last updated
Was this helpful?
Wisej.Web.Markup.GroupBoxExtensions
Last updated
Was this helpful?
Namespace: Wisej.Web.Markup
Assembly: Wisej.Framework (4.0.0.0)
Adds fluent markup extension methods to the GroupBox class.
Sets the AllowHtml property of the specified GroupBox.
TGroupBox
groupBox
The group box for which to set the AllowHtml property.
value
A boolean indicating whether HTML content is allowed in the group box.
Returns: TGroupBox. The modified group box with the updated AllowHtml property.
This method allows you to enable or disable HTML content in the group box.
Sets the AutoSizeMode property of the specified GroupBox.
TGroupBox
groupBox
The group box for which to set the AutoSizeMode property.
mode
Returns: TGroupBox. The modified group box with the updated AutoSizeMode property.
This method allows you to specify the automatic sizing behavior of the group box.
Sets the Checked property of the specified GroupBox.
TGroupBox
groupBox
The group box for which to set the Checked property.
value
A boolean indicating whether the group box is checked.
Returns: TGroupBox. The modified group box with the updated Checked property.
This method allows you to specify whether the group box is checked.
Sets the Collapsed property of the specified GroupBox.
TGroupBox
groupBox
The group box for which to set the Collapsed property.
collapsed
A boolean indicating whether the group box is collapsed.
Returns: TGroupBox. The modified group box with the updated Collapsed property.
This method allows you to specify whether the group box is collapsed.
Attaches an event handler for the CheckedChanged event of the specified GroupBox.
TGroupBox
groupBox
The group box to attach the event handler to.
action
An action to execute when the checked state changes.
Returns: TGroupBox. The modified group box with the attached CheckedChanged event handler.
This method allows you to execute a custom action whenever the checked state of the group box changes.
Attaches an event handler for the GroupBoxCollapsed event of the specified GroupBox.
TGroupBox
groupBox
The group box to attach the event handler to.
action
An action to execute when the group box is collapsed.
Returns: TGroupBox. The modified group box with the attached GroupBoxCollapsed event handler.
This method allows you to execute a custom action whenever the group box is collapsed.
Attaches an event handler for the GroupBoxExpanded event of the specified GroupBox.
TGroupBox
groupBox
The group box to attach the event handler to.
action
An action to execute when the group box is expanded.
Returns: TGroupBox. The modified group box with the attached GroupBoxExpanded event handler.
This method allows you to execute a custom action whenever the group box is expanded.
Sets the RestoreBounds property of the specified GroupBox.
TGroupBox
groupBox
The group box for which to set the RestoreBounds property.
bounds
Returns: TGroupBox. The modified group box with the updated RestoreBounds property.
This method allows you to specify the restore bounds of the group box.
Sets the RightToLeftLayout property of the specified GroupBox.
TGroupBox
groupBox
The group box for which to set the RightToLeftLayout property.
value
A boolean indicating whether the layout is right-to-left.
Returns: TGroupBox. The modified group box with the updated RightToLeftLayout property.
This method allows you to specify whether the layout of the group box is right-to-left.
Attaches an event handler for the RightToLeftLayoutChanged event of the specified GroupBox.
TGroupBox
groupBox
The group box to attach the event handler to.
action
An action to execute when the right-to-left layout changes.
Returns: TGroupBox. The modified group box with the attached RightToLeftLayoutChanged event handler.
This method allows you to execute a custom action whenever the right-to-left layout of the group box changes.
Sets the ShowCheckBox property of the specified GroupBox.
TGroupBox
groupBox
The group box for which to set the ShowCheckBox property.
value
A boolean indicating whether a checkbox is shown.
Returns: TGroupBox. The modified group box with the updated ShowCheckBox property.
This method allows you to specify whether the group box shows a checkbox.
Sets the ShowCloseButton property of the specified GroupBox.
TGroupBox
groupBox
The group box for which to set the ShowCloseButton property.
value
A boolean indicating whether the close button is shown.
Returns: TGroupBox. The modified group box with the updated ShowCloseButton property.
This method allows you to specify whether the group box shows a close button.
Sets the UseMnemonic property of the specified GroupBox.
TGroupBox
groupBox
The group box for which to set the UseMnemonic property.
value
A boolean indicating whether mnemonic characters are used in the group box text.
Returns: TGroupBox. The modified group box with the updated UseMnemonic property.
This method allows you to enable or disable the use of mnemonic characters in the group box's text.
The type of the group box, must inherit from and have an AllowHtml property.
The type of the group box, must inherit from .
The to set for the group box.
The type of the group box, must inherit from and have a Checked property.
The type of the group box, must inherit from and have a Collapsed property.
The type of the group box, must inherit from and have a CheckedChanged event.
The type of the group box, must inherit from and have a GroupBoxCollapsed event.
The type of the group box, must inherit from and have a GroupBoxExpanded event.
The type of the group box, must inherit from and have a RestoreBounds property.
The to set for the restore bounds.
The type of the group box, must inherit from .
The type of the group box, must inherit from and have a RightToLeftLayoutChanged event.
The type of the group box, must inherit from and have a ShowCheckBox property.
The type of the group box, must inherit from and have a ShowCloseButton property.
The type of the group box, must inherit from .