Gets or sets a value that determines if a local ActionEvent is fired when the ModuleAction contains a URL.

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

Syntax

C#
public bool UseActionEvent { get; set; }
Visual Basic
Public Property UseActionEvent As Boolean
	Get
	Set

Field Value

A boolean indicating whether to fire the ActionEvent.

Remarks

When a MenuAction is clicked, an event is fired within the Actions control. If the UseActionEvent is true then the Actions control will forward the event to the parent skin which will then attempt to raise the event to the appropriate module. If the UseActionEvent is false, and the URL property is set, then the Actions control will redirect the response to the URL. In all cases, an ActionEvent is raised if the URL is not set.

See Also