SelectedDatesCollection.Remove(DateTime) 方法
定義
重要
部分資訊涉及發行前產品,在發行之前可能會有大幅修改。 Microsoft 對此處提供的資訊,不做任何明確或隱含的瑕疵擔保。
從 DateTime 集合中移除指定的 SelectedDatesCollection 物件。
public:
void Remove(DateTime date);
public void Remove (DateTime date);
member this.Remove : DateTime -> unit
Public Sub Remove (date As DateTime)
參數
- date
- DateTime
要從 DateTime 移除的 SelectedDatesCollection。
範例
下列程式碼範例示範如何使用 Remove 方法從 SelectedDatesCollection 集合中移除專案。
<%@ 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>ASP.NET Example</title>
<script language="C#" runat="server">
void Button_Click(Object sender, EventArgs e)
{
if (Calendar1.SelectedDates.Count > 0)
Calendar1.SelectedDates.Remove(Calendar1.SelectedDates[0]);
}
</script>
</head>
<body>
<form id="form1" runat="server">
<asp:Calendar ID="Calendar1" runat="server"
SelectionMode="DayWeekMonth"/>
<hr />
Select some dates then click the button below <br /><br />
<asp:Button id="Button1"
text="Remove First Date"
OnClick="Button_Click"
runat="server" /> <br />
<asp:Label id="Label1" runat="server" />
</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" >
<head>
<title>ASP.NET Example</title>
<script language="VB" runat="server">
Sub Button_Click(sender As Object, e As EventArgs)
If Calendar1.SelectedDates.Count > 0 Then
Calendar1.SelectedDates.Remove(Calendar1.SelectedDates(0))
End If
End Sub
</script>
</head>
<body>
<form id="form1" runat="server">
<asp:Calendar ID="Calendar1" runat="server"
SelectionMode="DayWeekMonth"/>
<hr />
Select some dates then click the button below <br /><br />
<asp:Button id="Button1"
text="Remove First Date"
OnClick="Button_Click"
runat="server" /> <br />
<asp:Label id="Label1" runat="server" />
</form>
</body>
</html>
備註
使用這個方法可從集合中移除指定的 System.DateTime 物件 SelectedDatesCollection 。