Dialogs.ShowCheckListBox Method

DialogsShowCheckListBox Method

Displays Rhino's check list box.

Namespace:  Rhino.UI
Assembly:  RhinoCommon (in RhinoCommon.dll)
Syntax
public static bool[] ShowCheckListBox(
	string title,
	string message,
	IList items,
	IList<bool> checkState
)
Public Shared Function ShowCheckListBox ( 
	title As String,
	message As String,
	items As IList,
	checkState As IList(Of Boolean)
) As Boolean()

Parameters

title
Type: SystemString
The dialog title.
message
Type: SystemString
The dialog message.
items
Type: System.CollectionsIList
A list of items to show.
checkState
Type: System.Collections.GenericIListBoolean
A list of true/false boolean values.

Return Value

Type: Boolean
An array or boolean values determining if the user checked the corresponding box. On error, null.
Version Information

Rhino for Mac

Supported in: 5.4

Rhino for Windows

Supported in: 6.8
See Also