[go: up one dir, main page]
More Web Proxy on the site http://driver.im/

SortDirection 列挙体とは? わかりやすく解説

SortDirection 列挙体


SortDirection 列挙体

メモ : この列挙体は、.NET Framework version 2.0新しく追加されたものです。

項目のリスト並べ替える方向指定します

名前空間: System.Web.UI.WebControls
アセンブリ: System.Web (system.web.dll 内)
構文構文

Dim instance As SortDirection
public enum SortDirection
public enum class SortDirection
public enum SortDirection
public enum SortDirection
メンバメンバ
 メンバ説明
Ascending昇順並べ替え。たとえば、A から Z。 
Descending降順並べ替え。たとえば、Z から A。 
解説解説

SortDirection 列挙体は、項目を並べ替える方向を表すために使用します一般にこの列挙体は、コントロールに項目を表示する順序指定するプロパティ (GridView クラスの SortDirection プロパティなど) で使用されます。

使用例使用例

SortDirection 列挙体を使用してGridView コントロールで項目を表示する方向決定する方法次のコード例示します並べ替え方向決定するために、GridView コントロールSortDirection プロパティの値が検査されます。

<%@ Page language="VB" %>

<script runat="server">

  Sub AuthorsGridView_Sorted(ByVal sender As
 Object, ByVal e As EventArgs)
      
    ' Display the sort direction.   
    If AuthorsGridView.SortDirection = SortDirection.Ascending
 Then
 
      Message.Text = "Sorting in ascending order."
    
    Else
    
      Message.Text = "Sorting in descending order."
    
    End If
        
  End Sub

</script>

<html>
  <body>
    <form runat="server">
        
      <h3>SortDirection Example</h3>
            
      <asp:label id="Message"
        forecolor="Red"
        runat="server"/>
        
      <br/><br/>    
          
      <asp:gridview id="AuthorsGridView"
        datasourceid="AuthorsSqlDataSource"
        allowsorting="true"
         style="color:maroon">"AuthorsGridView_Sorted"  
        runat="server"/>
            
      <!-- This example uses Microsoft SQL Server and connects
 -->
      <!-- to the Pubs sample database.                   
     -->
      <asp:sqldatasource id="AuthorsSqlDataSource"
  
        selectcommand="SELECT [au_id], [au_lname], [au_fname],
 [address], [city], [state], [zip], [contract] FROM [authors]"
        updatecommand="UPDATE authors SET au_lname=@au_lname,
 au_fname=@au_fname, address=@address, city=@city, state=@state, zip=@zip, contract=@contract
 WHERE (authors.au_id = @au_id)"
        connectionstring="server=localhost;database=pubs;integrated
 security=SSPI"
        runat="server">
      </asp:sqldatasource>
            
    </form>
  </body>
</html>

<%@ Page language="C#" %>

<script runat="server">

  void AuthorsGridView_Sorted(Object sender, EventArgs e)
  {
      
    // Display the sort direction.   
    if(AuthorsGridView.SortDirection == SortDirection.Ascending)
    {  
      Message.Text = "Sorting in ascending order.";
    }
    else
    {
      Message.Text = "Sorting in descending order.";
    }
        
  }

</script>

<html>
  <body>
    <form runat="server">
        
      <h3>SortDirection Example</h3>
            
      <asp:label id="Message"
        forecolor="Red"
        runat="server"/>
        
      <br/><br/>    
          
      <asp:gridview id="AuthorsGridView"
        datasourceid="AuthorsSqlDataSource"
        allowsorting="true"
          
        runat="server"/>
            
      <!-- This example uses Microsoft SQL Server and connects -->
      <!-- to the Pubs sample database.                        -->
      <asp:sqldatasource id="AuthorsSqlDataSource"  
        selectcommand="SELECT [au_id], [au_lname], [au_fname], [address], [city],
 [state], [zip], [contract] FROM [authors]"
        updatecommand="UPDATE authors SET au_lname=@au_lname, au_fname=@au_fname,
 address=@address, city=@city, state=@state, zip=@zip, contract=@contract WHERE
 (authors.au_id = @au_id)"
        connectionstring="server=localhost;database=pubs;integrated security=SSPI"
        runat="server">
      </asp:sqldatasource>
            
    </form>
  </body>
</html>

プラットフォームプラットフォーム
バージョン情報バージョン情報
参照参照
関連項目
System.Web.UI.WebControls 名前空間
GridView.SortDirection プロパティ
GridView.SortExpression プロパティ
GridView.Sorted イベント
GridView.Sorting イベント
GridView クラス



英和和英テキスト翻訳>> Weblio翻訳
英語⇒日本語日本語⇒英語
  

「SortDirection 列挙体」の関連用語

SortDirection 列挙体のお隣キーワード
検索ランキング

   

英語⇒日本語
日本語⇒英語
   



SortDirection 列挙体のページの著作権
Weblio 辞書 情報提供元は 参加元一覧 にて確認できます。

   
日本マイクロソフト株式会社日本マイクロソフト株式会社
© 2025 Microsoft.All rights reserved.

©2025 GRAS Group, Inc.RSS