ISalRadioButton
Namespace: PPJ.Runtime
Assembly: PPJ.Runtime.50 (5.0.0.0)
Describes the checked state and group membership of SAL radio buttons and check-style option buttons.
- C#
- VB.NET
public interface ISalRadioButton
Public Interface ISalRadioButton
Example:
void SelectOption(PPJ.Runtime.ISalRadioButton option, int group)
{
option.GroupIndex = group;
option.Checked = true;
}
Properties
Checked
Boolean: Gets or sets whether this option is checked.
GroupIndex
Int32: Gets or sets the index of the group to which this option belongs.
IsCheckButton
Boolean: Gets whether this option uses check-box behavior instead of mutually exclusive radio-button behavior.
Implemented By
| Name | Description |
|---|---|
| SalOptionButton | Provides an image-capable, button-shaped SAL option control with group and checked-state support. |
| SalRadioButton | Provides a grouped SAL radio button with modification tracking and window actions. |
| SalQuickToolTipOptionButton | Provides a SAL option button with Quick Objects tooltip and status-text compatibility methods. |
| SalQuickToolTipRadioButton | Provides a SAL radio button with Quick Objects tooltip and status-text compatibility methods. |