DataColumn.ReadOnly 屬性

定義

取得或設定值,指出是否資料列一加入至資料表,就允許變更資料行。

public bool ReadOnly { get; set; }
[System.Data.DataSysDescription("DataColumnReadOnlyDescr")]
public bool ReadOnly { get; set; }

屬性值

如果資料行是唯讀,則為 true,否則為 false。 預設為 false

屬性

例外狀況

屬性在計算的資料行上設定為 false

範例

下列範例會建立 , DataColumn 並設定其 ReadOnly 屬性 true

private void AddColumn(DataTable table)
{
    // Add a DataColumn to the collection and set its properties.
    // The constructor sets the ColumnName of the column.
    DataColumn column = table.Columns.Add("Total");
    column.DataType = System.Type.GetType("System.Decimal");
    column.ReadOnly = true;
    column.Expression = "UnitPrice * Quantity";
    column.Unique = false;
}

適用於

另請參閱