New to Telerik UI for ASP.NET AJAX? Download free 30-day trial

WizardStepCreated

The server-side OnWizardStepCreated event occurs when a RadWizardStep object is created.

The OnWizardStepCreated event handler receives two arguments:

  1. The RadWizard that contains the active step. This argument is of type object, but can be cast to the RadWizard type.

  2. A WizardStepCreatedEventArgs object. This object has a property RadWizardStep that you can use to access the wizard step that was created.

Use the OnPreviousButtonClick event handler to respond when a RadWizardStep object is created.

protected void RadWizard1_WizardStepCreated(object sender, WizardStepCreatedEventArgs e)
{
    e.RadWizardStep.ToolTip = e.RadWizardStep.Title;
}
Protected Sub RadWizard1_WizardStepCreated(sender As Object, e As WizardStepCreatedEventArgs) Handles RadWizard1.WizardStepCreated
    e.RadWizardStep.ToolTip = e.RadWizardStep.Title
End Sub
In this article