RhinoCommon API
DialogsShowMultiListBox Method |
Displays Rhino's multiple selection list box.
Namespace: Rhino.UI
Assembly: RhinoCommon (in RhinoCommon.dll)
Since: 5.12

public static string[] ShowMultiListBox( string title, string message, IList<string> items, IList<string> defaults = null )
Public Shared Function ShowMultiListBox ( title As String, message As String, items As IList(Of String), Optional defaults As IList(Of String) = Nothing ) As String()
Parameters
- title
- Type: SystemString
The dialog title. - message
- Type: SystemString
The dialog message. - items
- Type: System.Collections.GenericIListString
A list of items to show. - defaults (Optional)
- Type: System.Collections.GenericIListString
The items to preselect.
Return Value
Type: StringThe selected items if successful, null on cancel.
