CheckboxField.AddOption

AddOption(string)

Adds new checkbox into a checkbox group, in which at most one of the checkboxes may be checked at any time. The new checkbox is added to the bottom of the group.

public void AddOption(string optionName)
ParameterTypeDescription
optionNameStringValue of the option represented by added checkbox.

See Also


AddOption(string, Rectangle)

Adds new checkbox into a checkbox group, in which at most one of the checkboxes may be checked at any time.

public void AddOption(string optionName, Rectangle rect)
ParameterTypeDescription
optionNameStringValue of the option represented by added checkbox.
rectRectangleRectangle of the added checkbox.

See Also


AddOption(string, int, Rectangle)

Adds new checkbox into a checkbox group, in which at most one of the checkboxes may be checked at any time.

public void AddOption(string optionName, int page, Rectangle rect)
ParameterTypeDescription
optionNameStringValue of the option represented by added checkbox.
pageInt32Number of the page where the added checkbox should be placed.
rectRectangleRectangle of the added checkbox on the page.

See Also