SectionGroupCollection.Item[] Property
Definition
Important
Some information relates to prerelease product that may be substantially modified before it’s released. Microsoft makes no warranties, express or implied, with respect to the information provided here.
Gets the specified section group.
Overloads
Item[Int32] |
Gets the specified section group at the specified index. |
Item[String] |
Gets the specified section group that has the specified name. |
Item[Int32]
Gets the specified section group at the specified index.
public:
property Microsoft::Web::Administration::SectionGroup ^ default[int] { Microsoft::Web::Administration::SectionGroup ^ get(int index); };
public Microsoft.Web.Administration.SectionGroup this[int index] { get; }
member this.Item(int) : Microsoft.Web.Administration.SectionGroup
Default Public ReadOnly Property Item(index As Integer) As SectionGroup
Parameters
- index
- Int32
The index of the SectionGroup object to be returned.
Property Value
The SectionGroup object at the specified index.
Applies to
Item[String]
Gets the specified section group that has the specified name.
public:
property Microsoft::Web::Administration::SectionGroup ^ default[System::String ^] { Microsoft::Web::Administration::SectionGroup ^ get(System::String ^ sectionGroupName); };
public Microsoft.Web.Administration.SectionGroup this[string sectionGroupName] { get; }
member this.Item(string) : Microsoft.Web.Administration.SectionGroup
Default Public ReadOnly Property Item(sectionGroupName As String) As SectionGroup
Parameters
- sectionGroupName
- String
The name of the SectionGroup object to be returned.
Property Value
The SectionGroup object that has the specified name.