DataGridView.ColumnHeadersHeightSizeMode プロパティ
アセンブリ: System.Windows.Forms (system.windows.forms.dll 内)

Dim instance As DataGridView Dim value As DataGridViewColumnHeadersHeightSizeMode value = instance.ColumnHeadersHeightSizeMode instance.ColumnHeadersHeightSizeMode = value
public: property DataGridViewColumnHeadersHeightSizeMode ColumnHeadersHeightSizeMode { DataGridViewColumnHeadersHeightSizeMode get (); void set (DataGridViewColumnHeadersHeightSizeMode value); }
/** @property */ public DataGridViewColumnHeadersHeightSizeMode get_ColumnHeadersHeightSizeMode () /** @property */ public void set_ColumnHeadersHeightSizeMode (DataGridViewColumnHeadersHeightSizeMode value)
public function get ColumnHeadersHeightSizeMode () : DataGridViewColumnHeadersHeightSizeMode public function set ColumnHeadersHeightSizeMode (value : DataGridViewColumnHeadersHeightSizeMode)
列ヘッダーの行の高さを調整できるモードを示す DataGridViewColumnHeadersHeightSizeMode 値。既定値は EnableResizing です。


このプロパティが AutoSize に設定されている場合、ユーザーは列ヘッダーの高さを調整できません。
列ヘッダーの高さをプログラムによって調整するには、AutoResizeColumnHeadersHeight メソッドを使用するか、ColumnHeadersHeight プロパティを設定します。
行ヘッダーのサイズ変更モードを設定するには、RowHeadersWidthSizeMode プロパティを使用します。
列ヘッダーのサイズが変更されたときに、セルの内容が複数の行に折り返されるようにするには、セルに対して有効なセル スタイルの WrapMode プロパティ値を True に設定する必要があります。
ヘッダーのサイズ変更の詳細については、「Windows フォーム DataGridView コントロールのサイズ変更オプション」を参照してください。
![]() |
---|
DataGridView コントロールは、ダブル バッファリングをサポートしていません。派生した DataGridView コントロールで DoubleBuffered を true に設定した場合、ユーザーが行、列、またはヘッダーのサイズを変更したり、列を並べ替えたりしたときの視覚的フィードバックは生成されません。 |

主に表示を目的とした DataGridView コントロールで、このプロパティを使用する方法を次のコード例に示します。この例では、コントロールの外観がいくつかの方法でカスタマイズされ、コントロールは対話機能を制限するように構成されます。この例は DataGridViewCellStyle クラスの概要で取り上げているコード例の一部です。
' Configures the appearance and behavior of a DataGridView control. Private Sub InitializeDataGridView() ' Initialize basic DataGridView properties. dataGridView1.Dock = DockStyle.Fill dataGridView1.BackgroundColor = Color.LightGray dataGridView1.BorderStyle = BorderStyle.Fixed3D ' Set property values appropriate for read-only display and ' limited interactivity. dataGridView1.AllowUserToAddRows = False dataGridView1.AllowUserToDeleteRows = False dataGridView1.AllowUserToOrderColumns = True dataGridView1.ReadOnly = True dataGridView1.SelectionMode = DataGridViewSelectionMode.FullRowSelect dataGridView1.MultiSelect = False dataGridView1.AutoSizeRowsMode = DataGridViewAutoSizeRowsMode.None dataGridView1.AllowUserToResizeColumns = False dataGridView1.ColumnHeadersHeightSizeMode = _ DataGridViewColumnHeadersHeightSizeMode.DisableResizing dataGridView1.AllowUserToResizeRows = False dataGridView1.RowHeadersWidthSizeMode = _ DataGridViewRowHeadersWidthSizeMode.DisableResizing ' Set the selection background color for all the cells. dataGridView1.DefaultCellStyle.SelectionBackColor = Color.White dataGridView1.DefaultCellStyle.SelectionForeColor = Color.Black ' Set RowHeadersDefaultCellStyle.SelectionBackColor so that its default ' value won't override DataGridView.DefaultCellStyle.SelectionBackColor. dataGridView1.RowHeadersDefaultCellStyle.SelectionBackColor = Color.Empty ' Set the background color for all rows and for alternating rows. ' The value for alternating rows overrides the value for all rows. dataGridView1.RowsDefaultCellStyle.BackColor = Color.LightGray dataGridView1.AlternatingRowsDefaultCellStyle.BackColor = Color.DarkGray ' Set the row and column header styles. dataGridView1.ColumnHeadersDefaultCellStyle.ForeColor = Color.White dataGridView1.ColumnHeadersDefaultCellStyle.BackColor = Color.Black dataGridView1.RowHeadersDefaultCellStyle.BackColor = Color.Black ' Set the Format property on the "Last Prepared" column to cause ' the DateTime to be formatted as "Month, Year". dataGridView1.Columns("Last Prepared").DefaultCellStyle.Format = "y" ' Specify a larger font for the "Ratings" column. Dim font As New Font( _ dataGridView1.DefaultCellStyle.Font.FontFamily, 25, FontStyle.Bold) Try dataGridView1.Columns("Rating").DefaultCellStyle.Font = font Finally font.Dispose() End Try End Sub
// Configures the appearance and behavior of a DataGridView control. private void InitializeDataGridView() { // Initialize basic DataGridView properties. dataGridView1.Dock = DockStyle.Fill; dataGridView1.BackgroundColor = Color.LightGray; dataGridView1.BorderStyle = BorderStyle.Fixed3D; // Set property values appropriate for read-only display and // limited interactivity. dataGridView1.AllowUserToAddRows = false; dataGridView1.AllowUserToDeleteRows = false; dataGridView1.AllowUserToOrderColumns = true; dataGridView1.ReadOnly = true; dataGridView1.SelectionMode = DataGridViewSelectionMode.FullRowSelect; dataGridView1.MultiSelect = false; dataGridView1.AutoSizeRowsMode = DataGridViewAutoSizeRowsMode.None; dataGridView1.AllowUserToResizeColumns = false; dataGridView1.ColumnHeadersHeightSizeMode = DataGridViewColumnHeadersHeightSizeMode.DisableResizing; dataGridView1.AllowUserToResizeRows = false; dataGridView1.RowHeadersWidthSizeMode = DataGridViewRowHeadersWidthSizeMode.DisableResizing; // Set the selection background color for all the cells. dataGridView1.DefaultCellStyle.SelectionBackColor = Color.White; dataGridView1.DefaultCellStyle.SelectionForeColor = Color.Black; // Set RowHeadersDefaultCellStyle.SelectionBackColor so that its default // value won't override DataGridView.DefaultCellStyle.SelectionBackColor. dataGridView1.RowHeadersDefaultCellStyle.SelectionBackColor = Color.Empty; // Set the background color for all rows and for alternating rows. // The value for alternating rows overrides the value for all rows. dataGridView1.RowsDefaultCellStyle.BackColor = Color.LightGray; dataGridView1.AlternatingRowsDefaultCellStyle.BackColor = Color.DarkGray; // Set the row and column header styles. dataGridView1.ColumnHeadersDefaultCellStyle.ForeColor = Color.White; dataGridView1.ColumnHeadersDefaultCellStyle.BackColor = Color.Black; dataGridView1.RowHeadersDefaultCellStyle.BackColor = Color.Black; // Set the Format property on the "Last Prepared" column to cause // the DateTime to be formatted as "Month, Year". dataGridView1.Columns["Last Prepared"].DefaultCellStyle.Format = "y"; // Specify a larger font for the "Ratings" column. using (Font font = new Font( dataGridView1.DefaultCellStyle.Font.FontFamily, 25, FontStyle.Bold)) { dataGridView1.Columns["Rating"].DefaultCellStyle.Font = font; } // Attach a handler to the CellFormatting event. dataGridView1.CellFormatting += new DataGridViewCellFormattingEventHandler(dataGridView1_CellFormatting); }

Windows 98, Windows 2000 SP4, Windows Millennium Edition, Windows Server 2003, Windows XP Media Center Edition, Windows XP Professional x64 Edition, Windows XP SP2, Windows XP Starter Edition
開発プラットフォームの中には、.NET Framework によってサポートされていないバージョンがあります。サポートされているバージョンについては、「システム要件」を参照してください。


DataGridView クラス
DataGridView メンバ
System.Windows.Forms 名前空間
その他の技術情報
DataGridView コントロール (Windows フォーム)
DataGridViewColumnHeadersHeightSizeMode 列挙体
アセンブリ: System.Windows.Forms (system.windows.forms.dll 内)

Public Enumeration DataGridViewColumnHeadersHeightSizeMode

メンバ名 | 説明 | |
---|---|---|
AutoSize | 列ヘッダーの高さは、すべての列ヘッダー セルのコンテンツに合わせて調整されます。 | |
DisableResizing | ユーザーはマウスを使用して列ヘッダーの高さを調節できません。 | |
EnableResizing | ユーザーはマウスを使用して列ヘッダーの高さを調節できます。 |

既定では、ユーザーが列ヘッダーの高さを変更できます。この機能を無効にして固定の高さを設定することも、自動サイズ変更モードを使用して、ヘッダーのコンテンツに合わせて高さを調整することもできます。自動サイズ変更を使用すると、ユーザーのサイズ変更が無効になります。
この列挙体は、DataGridView コントロールの ColumnHeadersHeightSizeMode プロパティと AutoResizeColumnHeadersHeight メソッドによって使用されます。
サイズ変更モードの詳細については、「Windows フォーム DataGridView コントロールのサイズ変更オプション」を参照してください。

次のコード例では、表示のみを目的とした対話形式でない DataGridView コントロールで、この列挙体を使用する方法を示します。
' Configures the appearance and behavior of a DataGridView control. Private Sub InitializeDataGridView() ' Initialize basic DataGridView properties. dataGridView1.Dock = DockStyle.Fill dataGridView1.BackgroundColor = Color.LightGray dataGridView1.BorderStyle = BorderStyle.Fixed3D ' Set property values appropriate for read-only display and ' limited interactivity. dataGridView1.AllowUserToAddRows = False dataGridView1.AllowUserToDeleteRows = False dataGridView1.AllowUserToOrderColumns = True dataGridView1.ReadOnly = True dataGridView1.SelectionMode = DataGridViewSelectionMode.FullRowSelect dataGridView1.MultiSelect = False dataGridView1.AutoSizeRowsMode = DataGridViewAutoSizeRowsMode.None dataGridView1.AllowUserToResizeColumns = False dataGridView1.ColumnHeadersHeightSizeMode = _ DataGridViewColumnHeadersHeightSizeMode.DisableResizing dataGridView1.AllowUserToResizeRows = False dataGridView1.RowHeadersWidthSizeMode = _ DataGridViewRowHeadersWidthSizeMode.DisableResizing ' Set the selection background color for all the cells. dataGridView1.DefaultCellStyle.SelectionBackColor = Color.White dataGridView1.DefaultCellStyle.SelectionForeColor = Color.Black ' Set RowHeadersDefaultCellStyle.SelectionBackColor so that its default ' value won't override DataGridView.DefaultCellStyle.SelectionBackColor. dataGridView1.RowHeadersDefaultCellStyle.SelectionBackColor = Color.Empty ' Set the background color for all rows and for alternating rows. ' The value for alternating rows overrides the value for all rows. dataGridView1.RowsDefaultCellStyle.BackColor = Color.LightGray dataGridView1.AlternatingRowsDefaultCellStyle.BackColor = Color.DarkGray ' Set the row and column header styles. dataGridView1.ColumnHeadersDefaultCellStyle.ForeColor = Color.White dataGridView1.ColumnHeadersDefaultCellStyle.BackColor = Color.Black dataGridView1.RowHeadersDefaultCellStyle.BackColor = Color.Black ' Set the Format property on the "Last Prepared" column to cause ' the DateTime to be formatted as "Month, Year". dataGridView1.Columns("Last Prepared").DefaultCellStyle.Format = "y" ' Specify a larger font for the "Ratings" column. Dim font As New Font( _ dataGridView1.DefaultCellStyle.Font.FontFamily, 25, FontStyle.Bold) Try dataGridView1.Columns("Rating").DefaultCellStyle.Font = font Finally font.Dispose() End Try End Sub
// Configures the appearance and behavior of a DataGridView control. private void InitializeDataGridView() { // Initialize basic DataGridView properties. dataGridView1.Dock = DockStyle.Fill; dataGridView1.BackgroundColor = Color.LightGray; dataGridView1.BorderStyle = BorderStyle.Fixed3D; // Set property values appropriate for read-only display and // limited interactivity. dataGridView1.AllowUserToAddRows = false; dataGridView1.AllowUserToDeleteRows = false; dataGridView1.AllowUserToOrderColumns = true; dataGridView1.ReadOnly = true; dataGridView1.SelectionMode = DataGridViewSelectionMode.FullRowSelect; dataGridView1.MultiSelect = false; dataGridView1.AutoSizeRowsMode = DataGridViewAutoSizeRowsMode.None; dataGridView1.AllowUserToResizeColumns = false; dataGridView1.ColumnHeadersHeightSizeMode = DataGridViewColumnHeadersHeightSizeMode.DisableResizing; dataGridView1.AllowUserToResizeRows = false; dataGridView1.RowHeadersWidthSizeMode = DataGridViewRowHeadersWidthSizeMode.DisableResizing; // Set the selection background color for all the cells. dataGridView1.DefaultCellStyle.SelectionBackColor = Color.White; dataGridView1.DefaultCellStyle.SelectionForeColor = Color.Black; // Set RowHeadersDefaultCellStyle.SelectionBackColor so that its default // value won't override DataGridView.DefaultCellStyle.SelectionBackColor. dataGridView1.RowHeadersDefaultCellStyle.SelectionBackColor = Color.Empty; // Set the background color for all rows and for alternating rows. // The value for alternating rows overrides the value for all rows. dataGridView1.RowsDefaultCellStyle.BackColor = Color.LightGray; dataGridView1.AlternatingRowsDefaultCellStyle.BackColor = Color.DarkGray; // Set the row and column header styles. dataGridView1.ColumnHeadersDefaultCellStyle.ForeColor = Color.White; dataGridView1.ColumnHeadersDefaultCellStyle.BackColor = Color.Black; dataGridView1.RowHeadersDefaultCellStyle.BackColor = Color.Black; // Set the Format property on the "Last Prepared" column to cause // the DateTime to be formatted as "Month, Year". dataGridView1.Columns["Last Prepared"].DefaultCellStyle.Format = "y"; // Specify a larger font for the "Ratings" column. using (Font font = new Font( dataGridView1.DefaultCellStyle.Font.FontFamily, 25, FontStyle.Bold)) { dataGridView1.Columns["Rating"].DefaultCellStyle.Font = font; } // Attach a handler to the CellFormatting event. dataGridView1.CellFormatting += new DataGridViewCellFormattingEventHandler(dataGridView1_CellFormatting); }

Windows 98, Windows 2000 SP4, Windows CE, Windows Millennium Edition, Windows Mobile for Pocket PC, Windows Mobile for Smartphone, Windows Server 2003, Windows XP Media Center Edition, Windows XP Professional x64 Edition, Windows XP SP2, Windows XP Starter Edition
開発プラットフォームの中には、.NET Framework によってサポートされていないバージョンがあります。サポートされているバージョンについては、「システム要件」を参照してください。


Weblioに収録されているすべての辞書からDataGridView.ColumnHeadersHeightSizeModeを検索する場合は、下記のリンクをクリックしてください。

- DataGridView.ColumnHeadersHeightSizeModeのページへのリンク