Data for Silverlight
NewRowFromBuilder メソッド
使用例 

新しい初期化されていない DataRow オブジェクトを作成します。
構文
'宣言
 
Protected Overridable Function NewRowFromBuilder( _
   ByVal builder As DataRowBuilder _
) As DataRow
protected virtual DataRow NewRowFromBuilder( 
   DataRowBuilder builder
)

パラメータ

builder

戻り値の型

新しい初期化されていない DataRow オブジェクト。
解説
型付きデータセットオブジェクトを実装する場合は、このメソッドをオーバーライドします。型付きデータテーブルに対して、DataRow オブジェクトではなく型付きデータ行オブジェクトの新しいインスタンスが返されます。
使用例
■次の例は、CreateDataRow メソッドをオーバーライドして 型付きデータ行を返す方法を示します。
// 適切な型の新しい行を作成します。
protected override DataRow NewRowFromBuilder(DataRowBuilder builder)
{
  return new TypedDataRow(builder);
}
             
// 新しい行を作成し、初期化して返します。
public TypedDataRow NewTypedDataRow()
{
  TypedDataRow newRow = (TypedDataRow)this.NewRow();
  return newRow;
}
            
// 型付き DataRow オブジェクト。
public class TypedDataRow : DataRow
{
  public string FirstName
  {
    get { return (string)this["FirstName"]; }
    set { return this["FirstName"] = (string)value; }
  }
}
参照

DataTable クラス
DataTable メンバ