GridView.SortDirection プロパティ
アセンブリ: System.Web (system.web.dll 内)

SortDirection 値の 1 つ。既定値は SortDirection.Ascending です。

SortDirection プロパティを使用して、並べ替えられる列が昇順または降順のどちらの順序で並べ替えられるかを確認します。
![]() |
---|
GridView コントロールには、このプロパティを自動的に設定する組み込みの並べ替え機能があります。通常、このプロパティは、並べ替えの方向をプログラムによって確認する必要がある場合、または GridView コントロールに独自の並べ替え機能を追加する場合のみ使用します。 |

SortDirection プロパティを使用して、GridView コントロールの並べ替えの方向をプログラムによって確認する方法を次のコード例に示します。
<%@ Page language="VB" %> <script runat="server"> Sub CustomersGridView_DataBound(ByVal sender As Object, ByVal e As EventArgs) ' Get the header row. Dim headerRow As GridViewRow = CustomersGridView.HeaderRow ' Get the footer row. Dim footerRow As GridViewRow = CustomersGridView.FooterRow ' Set the font color of the header and footer rows ' based on the sort direction. Select Case CustomersGridView.SortDirection Case SortDirection.Ascending headerRow.ForeColor = System.Drawing.Color.Green footerRow.ForeColor = System.Drawing.Color.Green Case SortDirection.Descending headerRow.ForeColor = System.Drawing.Color.Red footerRow.ForeColor = System.Drawing.Color.Red Case Else headerRow.ForeColor = System.Drawing.Color.Black footerRow.ForeColor = System.Drawing.Color.Black End Select ' Display the sort order in the footer row. footerRow.Cells(0).Text = "Sort Order = " & CustomersGridView.SortDirection.ToString() End Sub </script> <html> <body> <form runat="server"> <h3>GridView HeaderRow and FooterRow Example</h3> <asp:gridview id="CustomersGridView" datasourceid="CustomersSource" autogeneratecolumns="true" emptydatatext="No data available." allowsorting="true" allowpaging="true" showheader="true" showfooter="true" ondatabound="CustomersGridView_DataBound" runat="server"> <headerstyle backcolor="LightCyan" forecolor="MediumBlue"/> <footerstyle backcolor="LightCyan" forecolor="MediumBlue"/> </asp:gridview> <!-- This example uses Microsoft SQL Server and connects --> <!-- to the Northwind sample database. Use an ASP.NET --> <!-- expression to retrieve the connection string value --> <!-- from the Web.config file. --> <asp:sqldatasource id="CustomersSource" selectcommand="Select [CustomerID], [CompanyName], [Address], [City], [PostalCode], [Country] From [Customers]" connectionstring="<%$ ConnectionStrings:NorthWindConnectionString%>" runat="server"/> </form> </body> </html>
<%@ Page language="C#" %> <script runat="server"> void CustomersGridView_DataBound(Object sender, EventArgs e) { // Get the header row. GridViewRow headerRow = CustomersGridView.HeaderRow; // Get the footer row. GridViewRow footerRow = CustomersGridView.FooterRow; // Set the font color of the header and footer rows // based on the sort direction. switch (CustomersGridView.SortDirection) { case SortDirection.Ascending: headerRow.ForeColor = System.Drawing.Color.Green; footerRow.ForeColor = System.Drawing.Color.Green; break; case SortDirection.Descending: headerRow.ForeColor = System.Drawing.Color.Red; footerRow.ForeColor = System.Drawing.Color.Red; break; default: headerRow.ForeColor = System.Drawing.Color.Black; footerRow.ForeColor = System.Drawing.Color.Black; break; } // Display the sort order in the footer row. footerRow.Cells[0].Text = "Sort Order = " + CustomersGridView.SortDirection.ToString(); } </script> <html> <body> <form runat="server"> <h3>GridView HeaderRow and FooterRow Example</h3> <asp:gridview id="CustomersGridView" datasourceid="CustomersSource" autogeneratecolumns="true" emptydatatext="No data available." allowsorting="true" allowpaging="true" showheader="true" showfooter="true" ondatabound="CustomersGridView_DataBound" runat="server"> <headerstyle backcolor="LightCyan" forecolor="MediumBlue"/> <footerstyle backcolor="LightCyan" forecolor="MediumBlue"/> </asp:gridview> <!-- This example uses Microsoft SQL Server and connects --> <!-- to the Northwind sample database. Use an ASP.NET --> <!-- expression to retrieve the connection string value --> <!-- from the Web.config file. --> <asp:sqldatasource id="CustomersSource" selectcommand="Select [CustomerID], [CompanyName], [Address], [City], [PostalCode], [Country] From [Customers]" connectionstring="<%$ ConnectionStrings:NorthWindConnectionString%>" runat="server"/> </form> </body> </html>

Windows 98, Windows 2000 SP4, Windows Server 2003, Windows XP Media Center Edition, Windows XP Professional x64 Edition, Windows XP SP2, Windows XP Starter Edition
開発プラットフォームの中には、.NET Framework によってサポートされていないバージョンがあります。サポートされているバージョンについては、「システム要件」を参照してください。


Weblioに収録されているすべての辞書からGridView.SortDirection プロパティを検索する場合は、下記のリンクをクリックしてください。

- GridView.SortDirection プロパティのページへのリンク