RowStyle Constructors
Definition
Important
Some information relates to prerelease product that may be substantially modified before it’s released. Microsoft makes no warranties, express or implied, with respect to the information provided here.
Initializes an instance of the RowStyle class.
Overloads
RowStyle() |
Initializes an instance of the RowStyle class to its default state. |
RowStyle(SizeType) |
Initializes an instance of the RowStyle class using the supplied SizeType value. |
RowStyle(SizeType, Single) |
Initializes an instance of the RowStyle class using the supplied SizeType and height values. |
RowStyle()
RowStyle(SizeType)
public:
RowStyle(System::Windows::Forms::SizeType sizeType);
public RowStyle (System.Windows.Forms.SizeType sizeType);
new System.Windows.Forms.RowStyle : System.Windows.Forms.SizeType -> System.Windows.Forms.RowStyle
Public Sub New (sizeType As SizeType)
Parameters
- sizeType
- SizeType
A SizeType indicating how the row should be should be sized relative to its containing table.
Remarks
This constructor sets the Height property to 0.
See also
Applies to
RowStyle(SizeType, Single)
public:
RowStyle(System::Windows::Forms::SizeType sizeType, float height);
public RowStyle (System.Windows.Forms.SizeType sizeType, float height);
new System.Windows.Forms.RowStyle : System.Windows.Forms.SizeType * single -> System.Windows.Forms.RowStyle
Public Sub New (sizeType As SizeType, height As Single)
Parameters
- sizeType
- SizeType
A SizeType indicating how the row should be should be sized relative to its containing table.
- height
- Single
The preferred height in pixels or percentage of the TableLayoutPanel, depending on sizeType
.
Exceptions
height
is less than 0.
Remarks
The height
parameter will take on different meanings depending on the sizeType
parameter. For more information, see the Height property.
See also
Applies to
.NET