.NET Framework Class Library
UserInterface.RadioInput Method
|
<< Click to Display Table of Contents >> Navigation: Programming Mechworks PDM > .NET API > MwPDMApi Namespace > UserInterface Class > UserInterface Methods > .NET Framework Class Library |
Shows a smart radio-input box interface.
Namespace: MwPDMApi
Assembly: MwPDMApi (in MwPDMApi.dll) Version: 1.0.0.0 (1.0.0.0)
Syntax
Visual Basic |
|---|
Public Function RadioInput ( _ title As String, _ |
C# |
|---|
public bool RadioInput( string title, |
Visual C++ |
|---|
public: bool RadioInput( |
JavaScript |
|---|
function radioInput(title, label_title, radio_1_label, radio_2_label, default_radio, default_input_value, radio_active, input_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)
default_input_value
Type: System.String
input box value set as default
radio_active
Type: System.Int32
Output. The radio button option checked
input_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