A Module Action CommandArgument provides additional information and complements the CommandName.

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

Syntax

C#
public string CommandArgument { get; set; }
Visual Basic
Public Property CommandArgument As String
	Get
	Set

Field Value

A string that contains the argument for the command.

Remarks

The CommandArgument can contain any string set by the programmer. The CommandArgument property complements the CommandName property by allowing you to provide any additional information for the command. For example, you can set the CommandName property to "Sort" and set the CommandArgument property to "Ascending" to specify a command to sort in ascending order.

See Also