Specifies rows count.
Syntax
Visual Basic (Declaration) | |
---|
<System.ComponentModel.CategoryAttribute("Behavior")>
<System.ComponentModel.NotifyParentPropertyAttribute(True)>
<System.ComponentModel.DescriptionAttribute("Specifies rows count.")>
<System.ComponentModel.DefaultValueAttribute()>
<ISNet.Serialization.BinarySerializableAttribute()>
Public Property Rows As System.Integer |
Visual Basic (Usage) | Copy Code |
---|
Dim instance As WebInput
Dim value As System.Integer
instance.Rows = value
value = instance.Rows |
C# | |
---|
[System.ComponentModel.CategoryAttribute("Behavior")]
[System.ComponentModel.NotifyParentPropertyAttribute(true)]
[System.ComponentModel.DescriptionAttribute("Specifies rows count.")]
[System.ComponentModel.DefaultValueAttribute()]
[ISNet.Serialization.BinarySerializableAttribute()]
public System.int Rows {get; set;} |
Delphi | |
---|
public read-write property Rows: System.Integer; |
JScript | |
---|
System.ComponentModel.CategoryAttribute("Behavior")
System.ComponentModel.NotifyParentPropertyAttribute()
System.ComponentModel.DescriptionAttribute("Specifies rows count.")
System.ComponentModel.DefaultValueAttribute()
ISNet.Serialization.BinarySerializableAttribute()
public function get,set Rows : System.int |
Managed Extensions for C++ | |
---|
[System.ComponentModel.CategoryAttribute("Behavior")]
[System.ComponentModel.NotifyParentPropertyAttribute(true)]
[System.ComponentModel.DescriptionAttribute("Specifies rows count.")]
[System.ComponentModel.DefaultValueAttribute()]
[ISNet.Serialization.BinarySerializableAttribute()]
public: __property System.int get_Rows();
public: __property void set_Rows(
System.int value
); |
C++/CLI | |
---|
[System.ComponentModel.CategoryAttribute("Behavior")]
[System.ComponentModel.NotifyParentPropertyAttribute(true)]
[System.ComponentModel.DescriptionAttribute("Specifies rows count.")]
[System.ComponentModel.DefaultValueAttribute()]
[ISNet.Serialization.BinarySerializableAttribute()]
public:
property System.int Rows {
System.int get();
void set ( System.int value);
} |
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