DialogsShowCheckListBox Method |
Displays Rhino's check list box.
Namespace:
Rhino.UI
Assembly:
RhinoCommon (in RhinoCommon.dll)
Since: 5.0
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:
BooleanAn array or boolean values determining if the user checked the corresponding box. On error, null.
See Also