.NET Framework Class Library
UserInterface.RadioCombo Method
|
<< Click to Display Table of Contents >> Navigation: MwPDMApi Namespace > UserInterface Class > UserInterface Methods > .NET Framework Class Library |
Shows a smart radio-combo interface.
Namespace: MwPDMApi
Assembly: MwPDMApi (in MwPDMApi.dll) Version: 1.0.0.0 (1.0.0.0)
Syntax
Visual Basic |
|---|
Public Function RadioCombo ( _ title As String, _ |
C# |
|---|
public bool RadioCombo( string title, |
Visual C++ |
|---|
public: bool RadioCombo( |
JavaScript |
|---|
function radioCombo(title, label_title, radio_1_label, radio_2_label, default_radio, combo_values, default_combo_value, combo_visible, radio_active, combo_value); |
Parameters
title
Type: System.String
title of the form
label_title
Type: System.String
title of the label
radio_1_label
Type: System.String
label of the first radio button
radio_2_label
Type: System.String
label of the second radio button
default_radio
Type: System.Int32
radio button set as default (1 or 2)
combo_values
Type: System.Object
a string containing all the combo values divided by a vbCRLF char
default_combo_value
Type: System.String
combo value set as default (its name)
combo_visible
Type: System.Boolean
TRUE to show the combo, FALSE to hide
radio_active
Type: System.Int32
Output. The radio button option checked
combo_value
Type: System.String
Ouput. The combo option selected
Return Value
TRUE if the user has closed the dialog by pressing the OK button, FALSE otherwise
Remarks
See Also