Calendar.ShowGridLines プロパティ

Calendar コントロールの日付をグリッド線で区切るかどうかを示す値を取得または設定します。

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

構文

'宣言
Public Property ShowGridLines As Boolean
'使用
Dim instance As Calendar
Dim value As Boolean

value = instance.ShowGridLines

instance.ShowGridLines = value
public bool ShowGridLines { get; set; }
public:
property bool ShowGridLines {
    bool get ();
    void set (bool value);
}
/** @property */
public boolean get_ShowGridLines ()

/** @property */
public void set_ShowGridLines (boolean value)
public function get ShowGridLines () : boolean

public function set ShowGridLines (value : boolean)
適用できません。

プロパティ値

Calendar コントロールの日付をグリッド線で区切る場合は true。それ以外の場合は false。既定値は false です。

解説

ShowGridLines プロパティを使用して、Calendar コントロールの日付をグリッド線で区切るかどうかを指定します。

トピック 場所
方法 : Calendar Web サーバー コントロールの表示形式をカスタマイズする Visual Studio ASP .NET での Web アプリケーションの作成
方法 : Calendar Web サーバー コントロールの表示形式をカスタマイズする Visual Studio ASP .NET での Web アプリケーションの作成
方法 : Calendar Web サーバー コントロールの表示形式をカスタマイズする ASP .NET Web アプリケーションの作成

使用例

ShowGridLines プロパティを使用して、Calendar コントロールの日付の間にグリッド線を表示する方法を次のコード例に示します。

<%@ Page Language="VB" AutoEventWireup="True" %>
<!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Transitional//EN"
    "http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd">
<html xmlns="http://www.w3.org/1999/xhtml" >
<head>
    <title>Calendar Example</title>
</head>
<body>

   <form id="form1" runat="server">

      <h3>Calendar Example</h3>

      <asp:Calendar id="calendar1" runat="server"
           ShowGridLines="True"/>
            
   </form>        

</body>
</html>
<%@ Page Language="C#" AutoEventWireup="True" %>
<!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Transitional//EN"
    "http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd">
<html xmlns="http://www.w3.org/1999/xhtml" >
<head>
    <title>Calendar Example</title>
</head>
<body>

   <form id="form1" runat="server">

      <h3>Calendar Example</h3>

      <asp:Calendar id="calendar1" runat="server"
           ShowGridLines="True"/>
            
   </form>        

</body>
</html>
<%@ Page Language="JScript" AutoEventWireup="True" %>
<!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Transitional//EN"
    "http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd">
<html xmlns="http://www.w3.org/1999/xhtml" >
<head>
    <title>Calendar Example</title>
</head>
<body>

   <form id="form1" runat="server">

      <h3>Calendar Example</h3>

      <asp:Calendar id="calendar1" runat="server"
           ShowGridLines="True"/>
            
   </form>        

</body>
</html>
<%@ Page Language="VB" AutoEventWireup="True" %>

<!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Transitional//EN"
    "http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd">
<html xmlns="http://www.w3.org/1999/xhtml" >
   <script runat="server" >
  
      Sub Check_Change(sender As Object, e As EventArgs)
   
         ' Show or hide the gridlines in the Calendar control
         ' depending on the state of the ShowGridLinesCheckBox CheckBox
         ' control.
         If ShowGridLinesCheckBox.Checked Then

            Calendar1.ShowGridLines = True

         Else

            Calendar1.ShowGridLines = False

         End If

      End Sub
  
   </script>
  
<head runat="server">
    <title> Calendar ShowGridLines Example </title>
</head>
<body>

   <form id="form1" runat="server">
  
      <h3> Calendar ShowGridLines Example </h3>

      Select whether to show or hide the gridlines.

      <br /><br /> 
  
      <asp:Calendar id="Calendar1" 
           ShowTitle="True"
           runat="server"/>

      <br /><br />

      <asp:CheckBox id="ShowGridLinesCheckBox"
           Text="Show/Hide gridlines"
           AutoPostBack="True"
           Checked="False"
           OnCheckedChanged="Check_Change"
           runat="server"/>
  
   </form>

</body>
</html>
 
<%@ Page Language="C#" AutoEventWireup="True" %>

<!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Transitional//EN"
    "http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd">
<html xmlns="http://www.w3.org/1999/xhtml" >
   <script runat="server" >
  
      void Check_Change(Object sender, EventArgs e)
      {
   
         // Show or hide the gridlines in the Calendar control
         // depending on the state of the ShowGridLinesCheckBox CheckBox
         // control.
         if (ShowGridLinesCheckBox.Checked)
         {

            Calendar1.ShowGridLines = true;

         }
         else
         {

            Calendar1.ShowGridLines = false;

         }

      }
  
   </script>
  
<head runat="server">
    <title> Calendar ShowGridLines Example </title>
</head>
<body>

   <form id="form1" runat="server">
  
      <h3> Calendar ShowGridLines Example </h3>

      Select whether to show or hide the gridlines.

      <br /><br /> 
  
      <asp:Calendar id="Calendar1" 
           ShowTitle="True"
           runat="server"/>

      <br /><br />

      <asp:CheckBox id="ShowGridLinesCheckBox"
           Text="Show/Hide gridlines"
           AutoPostBack="True"
           Checked="False"
           OnCheckedChanged="Check_Change"
           runat="server"/>
  
   </form>

</body>
</html>
 

プラットフォーム

Windows 98,Windows Server 2000 SP4,Windows CE,Windows Millennium Edition,Windows Mobile for Pocket PC,Windows Mobile for Smartphone,Windows Server 2003,Windows XP Media Center Edition,Windows XP Professional x64 Edition,Windows XP SP2,Windows XP Starter Edition

Microsoft .NET Framework 3.0 は Windows Vista,Microsoft Windows XP SP2,および Windows Server 2003 SP1 でサポートされています。

バージョン情報

.NET Framework

サポート対象 : 3.0,2.0,1.1,1.0

参照

関連項目

Calendar クラス
Calendar メンバ
System.Web.UI.WebControls 名前空間

その他の技術情報

Calendar Web サーバー コントロール