AutoExpandSelection Property (DropDown)
In This Topic
Gets or sets a value that indicates whether the control should automatically expand the selection to whole words/numbers when the control is clicked.
Syntax
'Declaration
<System.ComponentModel.DefaultValueAttribute(True)>
Public Property AutoExpandSelection As System.Boolean
'Usage
Dim instance As DropDown
Dim value As System.Boolean
instance.AutoExpandSelection = value
value = instance.AutoExpandSelection
[System.ComponentModel.DefaultValue(true)]
public System.bool AutoExpandSelection {get; set;}
public read-write property AutoExpandSelection: System.Boolean;
System.ComponentModel.DefaultValueAttribute()
public function get,set AutoExpandSelection : System.boolean
[System.ComponentModel.DefaultValue(true)]
public: __property System.bool get_AutoExpandSelection();
public: __property void set_AutoExpandSelection(
System.bool value
);
[System.ComponentModel.DefaultValue(true)]
public:
property System.bool AutoExpandSelection {
System.bool get();
void set ( System.bool value);
}
See Also