IdentifyingGroupBox.PopulateGroupBox Method (Boolean, Type,String[])CleanCode C# Libraries v1.2.03 API
Populates a group box with a collection of RadioButtons or CheckBoxes corresponding to a collection embodied in an Enum.

Namespace: CleanCode.GeneralComponents.Controls
Assembly: CleanCode.GeneralComponents (in CleanCode.GeneralComponents.dll) Version: 1.2.3.0 (1.2.03)
Syntax

public void PopulateGroupBox(
	bool radioType,
	Type enumType,
	string[] omitArray
)

Parameters

radioType
Type: OnlineSystem.Boolean
if set to true uses RadioButtons, otherwise CheckBoxes.
enumType
Type: OnlineSystem.Type
Type of the enum.
omitArray
Type:OnlineSystem.String[]
A list of items to omit.
Remarks

If there are any items in the Enum that you wish to omit, e.g. None or All, you may supply a list of items to omit as the omitArray.
See Also