Gets the portal tabs.

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

Syntax

C#
public static List<TabInfo> GetPortalTabs(
	List<TabInfo> tabs,
	int excludeTabId,
	bool includeNoneSpecified,
	string noneSpecifiedText,
	bool includeHidden,
	bool includeDeleted,
	bool includeURL,
	bool checkViewPermisison,
	bool checkEditPermission
)
Visual Basic
Public Shared Function GetPortalTabs ( 
	tabs As List(Of TabInfo),
	excludeTabId As Integer,
	includeNoneSpecified As Boolean,
	noneSpecifiedText As String,
	includeHidden As Boolean,
	includeDeleted As Boolean,
	includeURL As Boolean,
	checkViewPermisison As Boolean,
	checkEditPermission As Boolean
) As List(Of TabInfo)

Parameters

tabs
Type: System.Collections.Generic..::..List<(Of <(<'TabInfo>)>)>
The tabs.
excludeTabId
Type: System..::..Int32
The exclude tab id.
includeNoneSpecified
Type: System..::..Boolean
if set to true [include none specified].
noneSpecifiedText
Type: System..::..String
The none specified text.
includeHidden
Type: System..::..Boolean
if set to true [include hidden].
includeDeleted
Type: System..::..Boolean
if set to true [include deleted].
includeURL
Type: System..::..Boolean
if set to true [include URL].
checkViewPermisison
Type: System..::..Boolean
if set to true [check view permisison].
checkEditPermission
Type: System..::..Boolean
if set to true [check edit permission].

Return Value

returnsM:DotNetNuke.Entities.Tabs.TabController.GetPortalTabs(System.Collections.Generic.List{DotNetNuke.Entities.Tabs.TabInfo},System.Int32,System.Boolean,System.String,System.Boolean,System.Boolean,System.Boolean,System.Boolean,System.Boolean)

See Also