次の方法で共有


DataGridTableStyle.PreferredRowHeight プロパティ

新しいグリッドが表示されるときに作成する行に適用する高さを取得または設定します。

Public Property PreferredRowHeight As Integer
[C#]
public int PreferredRowHeight {get; set;}
[C++]
public: __property int get_PreferredRowHeight();public: __property void set_PreferredRowHeight(int);
[JScript]
public function get PreferredRowHeight() : int;public function set PreferredRowHeight(int);

プロパティ値

行の高さ (ピクセル単位)。

解説

適切な高さは、指定した HeaderFont のテキストを表示するために必要な高さの最小値になります。

使用例

 
Dim myPreferredRowHeight As Integer = Convert.ToInt32(myTextBox.Text.Trim())
If myPreferredRowHeight < 18 Or myPreferredRowHeight > 134 Then
   MessageBox.Show("Enter the height between 18 and 134")
   Return
End If
' Set the 'PrefferedRowHeight' property of DataGridTableStyle instance.
myTableStyle.PreferredRowHeight = myPreferredRowHeight
' Add the DataGridTableStyle instance to the GridTableStylesCollection. 
myDataGrid.TableStyles.Add(myTableStyle)

[C#] 
int myPreferredRowHeight=Convert.ToInt32(myTextBox.Text.Trim());
if(myPreferredRowHeight<18 || myPreferredRowHeight >134)
{
   MessageBox.Show("Enter the height between 18 and 134");
   return;
}
// Set the 'PrefferedRowHeight' property of DataGridTableStyle instance.
myTableStyle.PreferredRowHeight=myPreferredRowHeight;
// Add the DataGridTableStyle instance to the GridTableStylesCollection. 
myDataGrid.TableStyles.Add(myTableStyle);

[C++] 
int myPreferredRowHeight=Convert::ToInt32(myTextBox->Text->Trim());
if (myPreferredRowHeight<18 || myPreferredRowHeight >134) {
    MessageBox::Show(S"Enter the height between 18 and 134");
    return;
}
// Set the 'PrefferedRowHeight' property of DataGridTableStyle instance.
myTableStyle->PreferredRowHeight=myPreferredRowHeight;
// Add the DataGridTableStyle instance to the GridTableStylesCollection.
myDataGrid->TableStyles->Add(myTableStyle);

[JScript] JScript のサンプルはありません。Visual Basic、C#、および C++ のサンプルを表示するには、このページの左上隅にある言語のフィルタ ボタン 言語のフィルタ をクリックします。

必要条件

プラットフォーム: Windows 98, Windows NT 4.0, Windows Millennium Edition, Windows 2000, Windows XP Home Edition, Windows XP Professional, Windows Server 2003 ファミリ

参照

DataGridTableStyle クラス | DataGridTableStyle メンバ | System.Windows.Forms 名前空間 | HeaderFont | PreferredColumnWidth