RowStyle 构造函数
定义
重要
一些信息与预发行产品相关,相应产品在发行之前可能会进行重大修改。 对于此处提供的信息,Microsoft 不作任何明示或暗示的担保。
初始化 RowStyle 类的实例。
重载
RowStyle() |
将 RowStyle 类的实例初始化为其默认状态。 |
RowStyle(SizeType) | |
RowStyle(SizeType, Single) |
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)
参数
注解
此构造函数将 Height 属性设置为 0。
另请参阅
适用于
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)
参数
- height
- Single
首选高度,取决于 sizeType
,以像素或 TableLayoutPanel 的百分比表示。
例外
height
小于 0。
注解
参数 height
将采用不同的含义,具体取决于 sizeType
参数。 有关更多信息,请参见 Height 属性。