Class StepBuilder
Inheritance
System.Object
Syncfusion.EJ2.ControlBuilder
StepBuilder
Assembly: Syncfusion.EJ2.dll
Syntax
public class StepBuilder : ControlBuilder
Constructors
StepBuilder()
Declaration
StepBuilder(List<Step>)
Declaration
public StepBuilder(List<Step> collection)
Parameters
| Type |
Name |
Description |
| System.Collections.Generic.List<Step> |
collection |
|
Methods
Add()
Declaration
ContentTemplate(Action<Object>)
Declaration
public StepBuilder ContentTemplate(Action<object> template)
Parameters
| Type |
Name |
Description |
| System.Action<System.Object> |
template |
|
Returns
ContentTemplate(Func<Object, Object>)
Declaration
public StepBuilder ContentTemplate(Func<object, object> template)
Parameters
| Type |
Name |
Description |
| System.Func<System.Object, System.Object> |
template |
|
Returns
CssClass(String)
Defines the CSS class to customize the step appearance.
Declaration
public StepBuilder CssClass(string cssClass)
Parameters
| Type |
Name |
Description |
| System.String |
cssClass |
|
Returns
Disabled(Boolean)
Defines whether a step is enabled or disabled.
Declaration
public StepBuilder Disabled(bool disabled)
Parameters
| Type |
Name |
Description |
| System.Boolean |
disabled |
|
Returns
IconCss(String)
Defines the icon content of the step.
Declaration
public StepBuilder IconCss(string iconCss)
Parameters
| Type |
Name |
Description |
| System.String |
iconCss |
|
Returns
IsValid(Nullable<Boolean>)
Defines the state whether it is valid completion or not.
If set to true, the completion is valid.
If false, the completion is invalid.
If null, the completion state is not determined.
Declaration
public StepBuilder IsValid(Nullable<bool> isValid)
Parameters
| Type |
Name |
Description |
| System.Nullable<System.Boolean> |
isValid |
|
Returns
Label(String)
Defines the label content of the step.
Declaration
public StepBuilder Label(string label)
Parameters
| Type |
Name |
Description |
| System.String |
label |
|
Returns
Optional(Boolean)
Defines whether the step is optionally to skip completion or not.
Declaration
public StepBuilder Optional(bool optional)
Parameters
| Type |
Name |
Description |
| System.Boolean |
optional |
|
Returns
Status(StepStatus)
Defines the status of the step.
The possible values are
NotStarted
InProgress
Completed
Declaration
public StepBuilder Status(StepStatus status)
Parameters
Returns
Text(String)
Defines the text content of the step.
Declaration
public StepBuilder Text(string text)
Parameters
| Type |
Name |
Description |
| System.String |
text |
|
Returns