DataGridViewBand.ReadOnly Proprietà

Definizione

Ottiene o imposta un valore che indica se l'utente può modificare le celle della banda.

public:
 virtual property bool ReadOnly { bool get(); void set(bool value); };
public virtual bool ReadOnly { get; set; }
member this.ReadOnly : bool with get, set
Public Overridable Property ReadOnly As Boolean

Valore della proprietà

Boolean

true se l'utente non può modificare le celle della banda; in caso contrario, false. Il valore predefinito è false.

Eccezioni

Quando si imposta questa proprietà, l'istanza dell'oggetto DataGridViewBand è un oggetto DataGridViewRow condiviso.

Esempio

Nell'esempio di codice seguente viene illustrato come utilizzare la proprietà per disabilitare la ReadOnly modifica per un intero DataGridViewoggetto . Questo esempio di codice fa parte di un esempio più ampio fornito per la DataGridViewBand classe .

// Make the entire DataGridView read only.
void Button8_Click( Object^ /*sender*/, System::EventArgs^ /*e*/ )
{
   System::Collections::IEnumerator^ myEnum = dataGridView->Columns->GetEnumerator();
   while ( myEnum->MoveNext() )
   {
      DataGridViewBand^ band = safe_cast<DataGridViewBand^>(myEnum->Current);
      band->ReadOnly = true;
   }
}
// Make the entire DataGridView read only.
private void Button8_Click(object sender, System.EventArgs e)
{
    foreach (DataGridViewBand band in dataGridView.Columns)
    {
        band.ReadOnly = true;
    }
}
' Make the entire DataGridView read only.
Private Sub Button8_Click(ByVal sender As Object, _
    ByVal e As System.EventArgs) Handles Button8.Click

    For Each band As DataGridViewBand In dataGridView.Columns
        band.ReadOnly = True
    Next
End Sub

Commenti

La ReadOnly proprietà influisce sulla DataGridViewCell.ReadOnly proprietà di ogni cella nella banda. Ad esempio, se la ReadOnly proprietà di un DataGridViewRow oggetto viene modificata, la DataGridViewCell.ReadOnly proprietà di tutte le celle nella riga verrà modificata.

Si applica a

Vedi anche