Gets or sets the status text associated with the form field, the source of the text that’s displayed in the status bar when a form field has the focus.
Gets or sets the status text associated with the form field, the source of the text that’s displayed in the status bar when a form field has the focus.
Gets or sets the help text associated with the form field, the source of the text that’s displayed in a message box when a form field has the focus and the user presses F1.
Gets or sets the help text associated with the form field, the source of the text that’s displayed in a message box when a form field has the focus and the user presses F1.
Gets or sets the value of the form field, which represents the list of options in the drop-down list.
DropDownFormField(String stylesheet, String name)
public DropDownFormField(String stylesheet, String name)
Initializes a new instance of the DropDownFormField class with the specified stylesheet and name.
Parameters:
Parameter
Type
Description
stylesheet
java.lang.String
The stylesheet to apply to the form field.
name
java.lang.String
The name of the form field.
getStylesheet()
public final String getStylesheet()
Gets the stylesheet applied to the form field.
Returns:
java.lang.String
getReadonly()
public final boolean getReadonly()
Gets or sets a value indicating whether the form field is read-only.
Returns:
boolean
setReadonly(boolean value)
public final void setReadonly(boolean value)
Gets or sets a value indicating whether the form field is read-only.
Parameters:
Parameter
Type
Description
value
boolean
getName()
public final String getName()
Gets the name of the form field.
Returns:
java.lang.String
getSelectedIndex()
public final int getSelectedIndex()
Gets or sets the index of the selected item in the drop-down list.
Returns:
int
setSelectedIndex(int value)
public final void setSelectedIndex(int value)
Gets or sets the index of the selected item in the drop-down list.
Parameters:
Parameter
Type
Description
value
int
getType()
public final int getType()
Gets the type of the form field, which is always FormFieldType.DropDown for this class.
Returns:
int
getLocaleId()
public final int getLocaleId()
Gets or sets the locale ID of the form field, which represents the culture or regional settings associated with the form field.
The following example demonstrates how to set the LocaleId property:
Set the LocaleId to represent the English (United States) culture
dropDownField.LocaleId = new CultureInfo("en-US").LCID;
The LocaleId property specifies a locale identifier (LCID) that corresponds to a particular culture or region.
Returns:
int
setLocaleId(int value)
public final void setLocaleId(int value)
Gets or sets the locale ID of the form field, which represents the culture or regional settings associated with the form field.
The following example demonstrates how to set the LocaleId property:
Set the LocaleId to represent the English (United States) culture
dropDownField.LocaleId = new CultureInfo("en-US").LCID;
The LocaleId property specifies a locale identifier (LCID) that corresponds to a particular culture or region.
Parameters:
Parameter
Type
Description
value
int
getStatusText()
public final HelpText getStatusText()
Gets or sets the status text associated with the form field, the source of the text that’s displayed in the status bar when a form field has the focus.
If set to false , the status text will not be applied.
Gets or sets the status text associated with the form field, the source of the text that’s displayed in the status bar when a form field has the focus.
If set to false , the status text will not be applied.
Gets or sets the help text associated with the form field, the source of the text that’s displayed in a message box when a form field has the focus and the user presses F1.
If set to false , the help text will not be applied.
Gets or sets the help text associated with the form field, the source of the text that’s displayed in a message box when a form field has the focus and the user presses F1.
If set to false , the help text will not be applied.