WizardStepCollection.Remove(WizardStepBase) メソッド
定義
重要
一部の情報は、リリース前に大きく変更される可能性があるプレリリースされた製品に関するものです。 Microsoft は、ここに記載されている情報について、明示または黙示を問わず、一切保証しません。
指定した WizardStepBase の派生オブジェクトをコレクションから削除します。
public:
void Remove(System::Web::UI::WebControls::WizardStepBase ^ wizardStep);
public void Remove (System.Web.UI.WebControls.WizardStepBase wizardStep);
member this.Remove : System.Web.UI.WebControls.WizardStepBase -> unit
Public Sub Remove (wizardStep As WizardStepBase)
パラメーター
- wizardStep
- WizardStepBase
コレクションから削除する WizardStepBase の派生オブジェクト。
例外
渡された WizardStepBase の派生オブジェクトが null
です。
例
次の例では、 メソッドを使用 Remove してコレクションから派生オブジェクトを WizardStepBase削除する方法を WizardStepCollection 示します。 この例では、 WizardSteps コントロールの Wizard プロパティが クラスの WizardStepCollection インスタンスであることに注意してください。
<%@ Page Language="C#" %>
<!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Transitional//EN" "http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd">
<script runat="server">
// Remove Step2 from the WizardStepCollection collection
// as the page is initialized. Then display the sidebar area
// so that it is apparent that the WizardStep2 page is gone.
void Page_Init()
{
Wizard1.WizardSteps.Remove(this.WizardStep2);
Wizard1.DisplaySideBar = true;
}
</script>
<html xmlns="http://www.w3.org/1999/xhtml" >
<head runat="server">
<title>ASP.NET Example</title>
</head>
<body>
<form id="form1" runat="server">
<asp:Wizard id="Wizard1"
runat="server"
displaysidebar="false" >
<WizardSteps>
<asp:WizardStep id="WizardStep1"
runat="server"
title="Step 1">
</asp:WizardStep>
<asp:WizardStep id="WizardStep2"
runat="server"
title="Step 2">
</asp:WizardStep>
<asp:WizardStep id="WizardStep3"
runat="server"
title="Step 3">
</asp:WizardStep>
</WizardSteps>
<HeaderTemplate>
<b>WizardStepCollection Remove Example</b>
</HeaderTemplate>
</asp:Wizard>
</form>
</body>
</html>
<%@ Page Language="VB" %>
<!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Transitional//EN" "http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd">
<script runat="server">
' Remove Step2 from the WizardStepCollection collection
' as the page is initialized. Then display the sidebar area
' so that it is apparent that the WizardStep2 page is gone.
Sub Page_Init()
Wizard1.WizardSteps.Remove(Me.WizardStep2)
Wizard1.DisplaySideBar = True
End Sub
</script>
<html xmlns="http://www.w3.org/1999/xhtml" >
<head runat="server">
<title>ASP.NET Example</title>
</head>
<body>
<form id="form1" runat="server">
<asp:Wizard id="Wizard1"
runat="server"
displaysidebar="false" >
<WizardSteps>
<asp:WizardStep id="WizardStep1"
runat="server"
title="Step 1">
</asp:WizardStep>
<asp:WizardStep id="WizardStep2"
runat="server"
title="Step 2">
</asp:WizardStep>
<asp:WizardStep id="WizardStep3"
runat="server"
title="Step 3">
</asp:WizardStep>
</WizardSteps>
<HeaderTemplate>
<b>WizardStepCollection Remove Example</b>
</HeaderTemplate>
</asp:Wizard>
</form>
</body>
</html>
注釈
Removeコレクションから派生オブジェクトを削除するには、 WizardStepBaseメソッドをWizardStepCollection使用します。 または、 メソッドを RemoveAt 使用して、コレクション内の WizardStepBase指定した場所から派生オブジェクトを WizardStepCollection 削除することもできます。
適用対象
こちらもご覧ください
GitHub で Microsoft と共同作業する
このコンテンツのソースは GitHub にあります。そこで、issue や pull request を作成および確認することもできます。 詳細については、共同作成者ガイドを参照してください。
.NET