[]
Shows the Select From List dialog. Honors property values defined in the Settings object.
public void SelectFromListDialog(IList sourceList, IList targetList, Type itemType, Appointment app, string windowTitle)
Public Sub SelectFromListDialog(sourceList As IList, targetList As IList, itemType As Type, app As Appointment, windowTitle As String)
| Type | Name | Description |
|---|---|---|
| IList | sourceList | The source list. |
| IList | targetList | The target list. |
| Type | itemType | The type of items in both lists. |
| Appointment | app | The appointment object, for which the dialog is shown. |
| string | windowTitle | The dialog title. |
Shows the Select From List dialog.
public void SelectFromListDialog(IList sourceList, IList targetList, Type itemType, Appointment app, string windowTitle, bool allowEdit, bool allowMultipleSelection)
Public Sub SelectFromListDialog(sourceList As IList, targetList As IList, itemType As Type, app As Appointment, windowTitle As String, allowEdit As Boolean, allowMultipleSelection As Boolean)
| Type | Name | Description |
|---|---|---|
| IList | sourceList | The source list. |
| IList | targetList | The target list. |
| Type | itemType | The type of items in both lists. |
| Appointment | app | The appointment object, for which the dialog is shown. |
| string | windowTitle | The dialog title. |
| bool | allowEdit | Determines whether the dialog should allow source collection editing. |
| bool | allowMultipleSelection | Determines whether multiple selection is allowed. |