Gets or sets the ModuleActionCollection at the specified index in the collection.

In VB.Net, this property is the indexer for the ModuleActionCollection class.

Namespace: DotNetNuke.Entities.Modules.Actions
Assembly: DotNetNuke (in DotNetNuke.dll)

Syntax

C#
public ModuleAction this[
	int index
] { get; set; }
Visual Basic
Public Default Property Item ( 
	index As Integer
) As ModuleAction
	Get
	Set

Parameters

index
Type: System..::..Int32
The index of the collection to access.

Field Value

A ModuleAction at each valid index.

Remarks

This method is an indexer that can be used to access the collection.

See Also