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

Dim instance As DataGridView Dim value As DataGridViewCellStyle value = instance.RowsDefaultCellStyle instance.RowsDefaultCellStyle = value
public: property DataGridViewCellStyle^ RowsDefaultCellStyle { DataGridViewCellStyle^ get (); void set (DataGridViewCellStyle^ value); }
/** @property */ public DataGridViewCellStyle get_RowsDefaultCellStyle () /** @property */ public void set_RowsDefaultCellStyle (DataGridViewCellStyle value)
public function get RowsDefaultCellStyle () : DataGridViewCellStyle public function set RowsDefaultCellStyle (value : DataGridViewCellStyle)
DataGridView の行セルに適用される DataGridViewCellStyle。

DataGridView コントロールは、セルの InheritedStyle プロパティで示されるスタイルを使用してセルを表示します。このプロパティは、型が DataGridViewCellStyle の他のプロパティからスタイルを継承します。ヘッダー セルを除く、すべての行のセルについて、RowsDefaultCellStyle プロパティを使用して指定されるスタイルは、DefaultCellStyle プロパティおよび DataGridViewColumn.DefaultCellStyle プロパティを使用して指定されるスタイルをオーバーライドし、AlternatingRowsDefaultCellStyle、DataGridViewRow.DefaultCellStyle、DataGridViewCell.Style の各プロパティを使用して指定されるスタイルによってオーバーライドされます。
詳細については、「Windows フォーム DataGridView コントロールでのセルのスタイル」を参照してください。
このプロパティにアクセスしたことがない場合に、このプロパティを取得すると、既定値を設定した DataGridViewCellStyle が作成されます。大量の行に対してこのプロパティを取得した場合、これがパフォーマンスに影響を及ぼす可能性があります。このプロパティを複数の行に設定する場合は、可能な限り、単一の DataGridViewCellStyle を使用してください。詳細については、「Windows フォーム DataGridView コントロールを拡張するための推奨される手順」を参照してください。

このプロパティを使用して、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 名前空間
DataGridViewCellStyle
その他の技術情報
DataGridView コントロール (Windows フォーム)
Windows フォーム DataGridView コントロールでのセルのスタイル
Weblioに収録されているすべての辞書からDataGridView.RowsDefaultCellStyle プロパティを検索する場合は、下記のリンクをクリックしてください。

- DataGridView.RowsDefaultCellStyle プロパティのページへのリンク