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 欄位的遞增順序排序資料。 此程式碼範例是逐步解說 :使用宣告式語法在網頁中篩選資料中提供之較大範例的一部分。
<asp:OrderByExpression DataField="ListPrice"
Direction="Descending">
<asp:ThenBy DataField="ProductID" Direction="Ascending"/>
</asp:OrderByExpression>
備註
類別 OrderByExpression 用於 控制項中 QueryExtender ,以遞增或遞減順序排序資料。 排序作業的方向是使用 Direction 屬性來指定。