Olvasás angol nyelven Szerkesztés

Megosztás a következőn keresztül:


DataGridViewRow.ReadOnly Property

Definition

Gets or sets a value indicating whether the row is read-only.

[System.ComponentModel.Browsable(true)]
public override bool ReadOnly { get; set; }

Property Value

true if the row is read-only; otherwise, false.

Attributes

Exceptions

The row is in a DataGridView control and is a shared row.

Examples

The following code example demonstrates how to use the DataGridViewBand.ReadOnly property, which is nearly identical to the ReadOnly property of the DataGridViewRow class. This code example is part of a larger example provided for the DataGridViewBand class.

// Make the entire DataGridView read only.
private void Button8_Click(object sender, System.EventArgs e)
{
    foreach (DataGridViewBand band in dataGridView.Columns)
    {
        band.ReadOnly = true;
    }
}

Remarks

The ReadOnly property affects the DataGridViewCell.ReadOnly property of each cell in the row.

Setting this property has no effect if the value of the DataGridView.ReadOnly property is true.

Applies to

Termék Verziók
.NET Framework 2.0, 3.0, 3.5, 4.0, 4.5, 4.5.1, 4.5.2, 4.6, 4.6.1, 4.6.2, 4.7, 4.7.1, 4.7.2, 4.8, 4.8.1
Windows Desktop 3.0, 3.1, 5, 6, 7, 8, 9

See also