DataSourceView.CanInsert プロパティ

定義

現在の DataSourceControl オブジェクトに関連付けられている DataSourceView オブジェクトで ExecuteInsert(IDictionary) 操作がサポートされているかどうかを示す値を取得します。

public:
 virtual property bool CanInsert { bool get(); };
public virtual bool CanInsert { get; }
member this.CanInsert : bool
Public Overridable ReadOnly Property CanInsert As Boolean

プロパティ値

操作がサポートされている場合は true。それ以外の場合は false。 基本クラスの実装では、false が返されます。

次のコード例では、 クラスを拡張する CanInsert クラスの プロパティと ExecuteInsert メソッドをオーバーライドする方法を DataSourceView 示します。 このコード例は、DataSourceView クラスのために提供されている大規模な例の一部です。

// The CsvDataSourceView does not currently
// permit insertion of a new record. You can
// modify or extend this sample to do so.
public override bool CanInsert {
    get {
        return false;
    }
}
protected override int ExecuteInsert(IDictionary values)
{
    throw new NotSupportedException();
}
' The CsvDataSourceView does not currently
' permit insertion of a new record. You can
' modify or extend this sample to do so.
Public Overrides ReadOnly Property CanInsert() As Boolean
   Get
      Return False
   End Get
End Property

Protected Overrides Function ExecuteInsert(values As IDictionary) As Integer
   Throw New NotSupportedException()
End Function 'ExecuteInsert

注釈

プロパティには CanInsert 、データ ソース コントロールの機能だけでなく、操作を実行することが現在適切かどうかも反映されます。 たとえば、データ ソース コントロールが操作を ExecuteInsert サポートしていても、必要な挿入コマンドまたはその他のデータが設定されていない場合、 CanInsert 挿入操作が失敗すると、 プロパティは を返 falseします。

適用対象

こちらもご覧ください