set/change the module position within a pane on a page

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

Syntax

C#
public void UpdateModuleOrder(
	int tabId,
	int moduleId,
	int moduleOrder,
	string paneName
)
Visual Basic
Public Sub UpdateModuleOrder ( 
	tabId As Integer,
	moduleId As Integer,
	moduleOrder As Integer,
	paneName As String
)

Parameters

tabId
Type: System..::..Int32
ID of the page
moduleId
Type: System..::..Int32
ID of the module on the page
moduleOrder
Type: System..::..Int32
position within the controls list on page, -1 if to be added at the end
paneName
Type: System..::..String
name of the pane, the module is placed in on the page

Implements

IModuleController..::..UpdateModuleOrder(Int32, Int32, Int32, String)

See Also