.NET Framework Class Library
UserInterface.MultiSelectionList Method

<< Click to Display Table of Contents >>

Navigation:  Programming Mechworks PDM > .NET API > MwPDMApi Namespace > UserInterface Class > UserInterface Methods >

.NET Framework Class Library
UserInterface.MultiSelectionList Method

Shows a dialog box that allows to choose between customized entries.

Namespace: MwPDMApi
Assembly:  MwPDMApi (in MwPDMApi.dll) Version: 1.0.0.0 (1.0.0.0)

Syntax

Visual Basic

Public Function MultiSelectionList ( _

values As String(), _
title As String, _
ByRef resp As String() _
) As Boolean

C#

public bool MultiSelectionList(

string[] values,
string title,
ref string[] resp
)

Visual C++

public:

bool MultiSelectionList(
array<String^>^ values,
String^ title,
array<String^>^% resp
)

JavaScript

function multiSelectionList(values, title, resp);

Parameters

values

Type: System.String[]
An array with the list of options to visualize.

title

Type: System.String
dialog box title

resp

Type: System.String[]
Output. The selected items list. If the function has a FALSE value resp is not changed

Return Value

TRUE if the user has closed the dialog by pressing the OK button, FALSE otherwise

See Also

UserInterface Class

UserInterface Members

MwPDMApi Namespace