ICustomTabsConfigGlobalTabs Method
|
Retrieves the collection of global custom tabs, a.k.a, Apps, either in specific range, or all of them.
Namespace:
Ingeniux.CMS
Assembly:
Ingeniux.CMS.CSAPI (in Ingeniux.CMS.CSAPI.dll) Version: 10.6.308
Syntax IEnumerable<ICustomTabSetting> GlobalTabs(
out int count,
IUser user = null,
int pageSize = -1,
int startIndex = -1
)
Function GlobalTabs (
<OutAttribute> ByRef count As Integer,
Optional user As IUser = Nothing,
Optional pageSize As Integer = -1,
Optional startIndex As Integer = -1
) As IEnumerable(Of ICustomTabSetting)
IEnumerable<ICustomTabSetting^>^ GlobalTabs(
[OutAttribute] int% count,
IUser^ user = nullptr,
int pageSize = -1,
int startIndex = -1
)
abstract GlobalTabs :
count : int byref *
?user : IUser *
?pageSize : int *
?startIndex : int
(* Defaults:
let _user = defaultArg user null
let _pageSize = defaultArg pageSize -1
let _startIndex = defaultArg startIndex -1
*)
-> IEnumerable<ICustomTabSetting>
Parameters
- count
- Type: SystemInt32
Output of total count of custom tabs - user (Optional)
- Type: Ingeniux.CMSIUser
User that can access the tabs, Optional. If not specified, return all global tabs - pageSize (Optional)
- Type: SystemInt32
Optional max number of retrievals - startIndex (Optional)
- Type: SystemInt32
Optional starting index
Return Value
Type:
IEnumerableICustomTabSettingCollection of global custom tab objects
See Also