Class Navigation.Step
Represents a single step in a navigation path.
Inherited Members
Namespace: DataWeb.Structure
Assembly: DataWeb.Core.dll
Syntax
public class Navigation.Step
Constructors
Step()
Initializes a new instance of the Navigation.Step class.
Declaration
public Step()
Step(string, bool)
Initializes a new instance of the Navigation.Step class with the specified section name and default values for other properties.
Declaration
public Step(string sectionName, bool isHidden = false)
Parameters
Type | Name | Description |
---|---|---|
string | sectionName | The name of the section for this step. |
bool | isHidden | Specifies whether this step is hidden. |
Step(string, string, bool)
Initializes a new instance of the Navigation.Step class with the specified section name, Id of the master item, and value for the IsHidden property.
Declaration
public Step(string sectionName, string idMaster, bool isHidden = false)
Parameters
Type | Name | Description |
---|---|---|
string | sectionName | The name of the section for this step. |
string | idMaster | The Id of the master item for this step. |
bool | isHidden | Specifies whether this step is hidden. |
Properties
IdMaster
Gets or sets the unique identifier.
Declaration
public string IdMaster { get; set; }
Property Value
Type | Description |
---|---|
string |
IsHidden
Gets or sets a value indicating whether this step is hidden.
Declaration
public bool IsHidden { get; set; }
Property Value
Type | Description |
---|---|
bool |
SectionName
Gets or sets the name of the section for this step.
Declaration
public string SectionName { get; set; }
Property Value
Type | Description |
---|---|
string |