DataSourceSelectArguments コンストラクター

定義

DataSourceSelectArguments クラスの新しいインスタンスを初期化します。

オーバーロード

名前 説明
DataSourceSelectArguments()

DataSourceSelectArguments クラスの新しい既定のインスタンスを初期化します。

DataSourceSelectArguments(String)

指定した並べ替え式を使用して、DataSourceSelectArguments クラスの新しいインスタンスを初期化します。

DataSourceSelectArguments(Int32, Int32)

ページング シナリオで返す開始位置と行数を指定して、DataSourceSelectArguments クラスの新しいインスタンスを初期化します。

DataSourceSelectArguments(String, Int32, Int32)

指定した並べ替え式、開始位置、ページング シナリオで返す行数を使用して、DataSourceSelectArguments クラスの新しいインスタンスを初期化します。

DataSourceSelectArguments()

DataSourceSelectArguments クラスの新しい既定のインスタンスを初期化します。

public:
 DataSourceSelectArguments();
public DataSourceSelectArguments();
Public Sub New ()

注釈

パラメーターなしのコンストラクターは、SortExpressionに初期化されたString.Empty プロパティと、StartRowIndexプロパティと MaximumRows プロパティを 0 に初期化したクラスのインスタンスを作成します。

こちらもご覧ください

適用対象

DataSourceSelectArguments(String)

指定した並べ替え式を使用して、DataSourceSelectArguments クラスの新しいインスタンスを初期化します。

public:
 DataSourceSelectArguments(System::String ^ sortExpression);
public DataSourceSelectArguments(string sortExpression);
new System.Web.UI.DataSourceSelectArguments : string -> System.Web.UI.DataSourceSelectArguments
Public Sub New (sortExpression As String)

パラメーター

sortExpression
String

結果が呼び出し元に返される前に、データ ソース コントロールがデータ取得操作の結果を並べ替えるために使用する並べ替え式。

注釈

DataSourceSelectArguments(String) コンストラクターは、指定した式と、SortExpressionおよび StartRowIndex プロパティを 0 に初期化して初期化されたMaximumRowsを持つクラスのインスタンスを作成します。

適用対象

DataSourceSelectArguments(Int32, Int32)

ページング シナリオで返す開始位置と行数を指定して、DataSourceSelectArguments クラスの新しいインスタンスを初期化します。

public:
 DataSourceSelectArguments(int startRowIndex, int maximumRows);
public DataSourceSelectArguments(int startRowIndex, int maximumRows);
new System.Web.UI.DataSourceSelectArguments : int * int -> System.Web.UI.DataSourceSelectArguments
Public Sub New (startRowIndex As Integer, maximumRows As Integer)

パラメーター

startRowIndex
Int32

データ取得操作によって返されるデータの先頭を示すデータ行のインデックス。

maximumRows
Int32

データ取得操作で返される行の最大数。

注釈

DataSourceSelectArguments(Int32, Int32) コンストラクターは、SortExpressionに初期化されたString.Emptyと、StartRowIndexおよびMaximumRowsパラメーターに指定された値に初期化されたstartRowIndexプロパティとmaximumRowsプロパティを持つクラスのインスタンスを作成します。

適用対象

DataSourceSelectArguments(String, Int32, Int32)

指定した並べ替え式、開始位置、ページング シナリオで返す行数を使用して、DataSourceSelectArguments クラスの新しいインスタンスを初期化します。

public:
 DataSourceSelectArguments(System::String ^ sortExpression, int startRowIndex, int maximumRows);
public DataSourceSelectArguments(string sortExpression, int startRowIndex, int maximumRows);
new System.Web.UI.DataSourceSelectArguments : string * int * int -> System.Web.UI.DataSourceSelectArguments
Public Sub New (sortExpression As String, startRowIndex As Integer, maximumRows As Integer)

パラメーター

sortExpression
String

結果が呼び出し元に返される前に、データ ソース コントロールがデータ取得操作の結果を並べ替えるために使用する並べ替え式。

startRowIndex
Int32

データ取得操作によって返されるデータの先頭を示すデータ行のインデックス。

maximumRows
Int32

データ取得操作で返される行の最大数。

適用対象