GridView.HorizontalAlign プロパティ
アセンブリ: System.Web (system.web.dll 内)
 構文
構文Dim instance As GridView Dim value As HorizontalAlign value = instance.HorizontalAlign instance.HorizontalAlign = value
public: virtual property HorizontalAlign HorizontalAlign { HorizontalAlign get (); void set (HorizontalAlign value); }
/** @property */ public HorizontalAlign get_HorizontalAlign () /** @property */ public void set_HorizontalAlign (HorizontalAlign value)
public function get HorizontalAlign () : HorizontalAlign public function set HorizontalAlign (value : HorizontalAlign)
HorizontalAlign 値の 1 つ。既定値は HorizontalAlign.NotSet です。
 解説
解説 使用例
使用例HorizontalAlign プロパティを使用して、GridView コントロールをページの右側に揃えて配置する方法を次のコード例に示します。
<%@ Page language="VB" %> <html> <body> <form runat="server"> <h3>GridView HorizontalAlign Example</h3> <asp:gridview id="CustomersGridView" datasourceid="CustomersSqlDataSource" autogeneratecolumns="true" horizontalalign="Right" runat="server"> </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="CustomersSqlDataSource" selectcommand="Select [CustomerID], [CompanyName], [Address], [City], [PostalCode], [Country] From [Customers]" connectionstring="<%$ ConnectionStrings:NorthWindConnectionString%>" runat="server"> </asp:sqldatasource> </form> </body> </html>
<%@ Page language="C#" %> <html> <body> <form runat="server"> <h3>GridView HorizontalAlign Example</h3> <asp:gridview id="CustomersGridView" datasourceid="CustomersSqlDataSource" autogeneratecolumns="true" horizontalalign="Right" runat="server"> </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="CustomersSqlDataSource" selectcommand="Select [CustomerID], [CompanyName], [Address], [City], [PostalCode], [Country] From [Customers]" connectionstring="<%$ ConnectionStrings:NorthWindConnectionString%>" runat="server"> </asp:sqldatasource> </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.HorizontalAlign プロパティを検索する場合は、下記のリンクをクリックしてください。
 全ての辞書からGridView.HorizontalAlign プロパティ
                    を検索
                     全ての辞書からGridView.HorizontalAlign プロパティ
                    を検索
                - GridView.HorizontalAlign プロパティのページへのリンク

 
                             
                    


