Gets or sets the tab order of the control within its container.
Syntax
Visual Basic (Declaration) | |
---|
<System.ComponentModel.NotifyParentPropertyAttribute(True)>
<System.ComponentModel.CategoryAttribute("Behavior")>
<ISNet.Serialization.BinarySerializableAttribute()>
<System.ComponentModel.DescriptionAttribute("Gets or sets the tab order of the control within its container.")>
<System.ComponentModel.BindableAttribute(Bindable=True, Direction=BindingDirection.OneWay)>
Public Overrides Property TabIndex As System.Short |
Visual Basic (Usage) | Copy Code |
---|
Dim instance As WebInput
Dim value As System.Short
instance.TabIndex = value
value = instance.TabIndex |
C# | |
---|
[System.ComponentModel.NotifyParentPropertyAttribute(true)]
[System.ComponentModel.CategoryAttribute("Behavior")]
[ISNet.Serialization.BinarySerializableAttribute()]
[System.ComponentModel.DescriptionAttribute("Gets or sets the tab order of the control within its container.")]
[System.ComponentModel.BindableAttribute(Bindable=true, Direction=BindingDirection.OneWay)]
public override System.short TabIndex {get; set;} |
Delphi | |
---|
public read-write property TabIndex: System.Int16; override; |
JScript | |
---|
System.ComponentModel.NotifyParentPropertyAttribute()
System.ComponentModel.CategoryAttribute("Behavior")
ISNet.Serialization.BinarySerializableAttribute()
System.ComponentModel.DescriptionAttribute("Gets or sets the tab order of the control within its container.")
System.ComponentModel.BindableAttribute(Bindable=, Direction=BindingDirection.OneWay)
public override function get,set TabIndex : System.short |
Managed Extensions for C++ | |
---|
[System.ComponentModel.NotifyParentPropertyAttribute(true)]
[System.ComponentModel.CategoryAttribute("Behavior")]
[ISNet.Serialization.BinarySerializableAttribute()]
[System.ComponentModel.DescriptionAttribute("Gets or sets the tab order of the control within its container.")]
[System.ComponentModel.BindableAttribute(Bindable=true, Direction=BindingDirection.OneWay)]
public: __property System.short get_TabIndex() override;
public: __property void set_TabIndex(
System.short value
) override; |
C++/CLI | |
---|
[System.ComponentModel.NotifyParentPropertyAttribute(true)]
[System.ComponentModel.CategoryAttribute("Behavior")]
[ISNet.Serialization.BinarySerializableAttribute()]
[System.ComponentModel.DescriptionAttribute("Gets or sets the tab order of the control within its container.")]
[System.ComponentModel.BindableAttribute(Bindable=true, Direction=BindingDirection.OneWay)]
public:
property System.short TabIndex {
System.short get() override;
void set ( System.short value) override;
} |
Requirements
Target Platforms: Windows 7, Windows Vista SP1 or later, Windows XP SP3, Windows Server 2008 (Server Core not supported), Windows Server 2008 R2 (Server Core supported with SP1 or later), Windows Server 2003 SP2
See Also