Exemplo n.º 1
0
 /// <summary>
 /// Validates the given step.
 /// </summary>
 /// <param name="step">The step to be validated.</param>
 /// <returns>Pointer to the control instance for chaining.</returns>
 public extern virtual sap.m.Wizard validateStep(sap.m.WizardStep step);
Exemplo n.º 2
0
 /// <summary>
 /// Goes to the given step. The step must already be activated and visible. You can't use this method on steps that haven't been reached yet.
 /// </summary>
 /// <param name="step">The step to go to.</param>
 /// <param name="focusFirstStepElement">Defines whether the focus should be changed to the first element.</param>
 /// <returns>Pointer to the control instance for chaining.</returns>
 public extern virtual sap.m.Wizard goToStep(sap.m.WizardStep step, bool focusFirstStepElement);
Exemplo n.º 3
0
 /// <summary>
 /// Checks for the provided <code>sap.m.WizardStep</code> in the aggregation {@link #getSteps steps}. and returns its index if found or -1 otherwise.
 /// </summary>
 /// <param name="oStep">The step whose index is looked for</param>
 /// <returns>The index of the provided control in the aggregation if found, or -1 otherwise</returns>
 public extern virtual int indexOfStep(sap.m.WizardStep oStep);
Exemplo n.º 4
0
 /// <summary>
 /// Discards all progress done from the given step(incl.) to the end of the wizard. The verified state of the steps is returned to the initial provided.
 /// </summary>
 /// <param name="step">The step after which the progress is discarded.</param>
 /// <returns>Pointer to the control instance for chaining.</returns>
 public extern virtual sap.m.Wizard discardProgress(sap.m.WizardStep step);
Exemplo n.º 5
0
 /// <summary>
 /// Adds a new step to the Wizard.
 /// </summary>
 /// <param name="wizardStep">New WizardStep to add to the Wizard</param>
 /// <returns>Pointer to the control instance for chaining</returns>
 public extern virtual sap.m.Wizard addStep(sap.m.WizardStep wizardStep);