OrderByExpression.Direction プロパティ
定義
重要
一部の情報は、リリース前に大きく変更される可能性があるプレリリースされた製品に関するものです。 Microsoft は、ここに記載されている情報について、明示または黙示を問わず、一切保証しません。
IQueryable データ ソース オブジェクトの並べ替えの方向を取得または設定します。
public:
property System::Web::UI::WebControls::SortDirection Direction { System::Web::UI::WebControls::SortDirection get(); void set(System::Web::UI::WebControls::SortDirection value); };
public System.Web.UI.WebControls.SortDirection Direction { get; set; }
member this.Direction : System.Web.UI.WebControls.SortDirection with get, set
Public Property Direction As SortDirection
プロパティ値
データ ソース オブジェクトの並べ替えの方向。
例
次の例は、ListPrice フィールドを降順に並べ替え、次に ProductID フィールドを昇順で並べ替える方法を示しています。 このコード例は、「 チュートリアル: 宣言構文を使用した Web ページのデータのフィルター処理」で提供されるより大きな例の一部です。
<asp:OrderByExpression DataField="ListPrice"
Direction="Descending">
<asp:ThenBy DataField="ProductID" Direction="Ascending"/>
</asp:OrderByExpression>
注釈
クラスは OrderByExpression 、データを QueryExtender 昇順または降順で並べ替えるためにコントロールで使用されます。 並べ替え操作の方向は、 プロパティを使用 Direction して指定します。
適用対象
GitHub で Microsoft と共同作業する
このコンテンツのソースは GitHub にあります。そこで、issue や pull request を作成および確認することもできます。 詳細については、共同作成者ガイドを参照してください。
.NET