ICMSPageGetNavigation Method
|
Namespace:
Ingeniux.Runtime
Assembly:
IGXRuntimeAPI (in IGXRuntimeAPI.dll) Version: 10.6.308
Syntax ICMSNavigationElement GetNavigation(
string navName,
NavigationElementType navType = NavigationElementType.Navigation,
bool recursiveSearch = false
)
Function GetNavigation (
navName As String,
Optional navType As NavigationElementType = NavigationElementType.Navigation,
Optional recursiveSearch As Boolean = false
) As ICMSNavigationElement
ICMSNavigationElement^ GetNavigation(
String^ navName,
NavigationElementType navType = NavigationElementType::Navigation,
bool recursiveSearch = false
)
abstract GetNavigation :
navName : string *
?navType : NavigationElementType *
?recursiveSearch : bool
(* Defaults:
let _navType = defaultArg navType NavigationElementType.Navigation
let _recursiveSearch = defaultArg recursiveSearch false
*)
-> ICMSNavigationElement
Parameters
- navName
- Type: SystemString
Name of the Navigation - navType (Optional)
- Type: Ingeniux.RuntimeNavigationElementType
Type of Navigation Element, which is the Element tag name. By default, the interface searches for the standard Navigation type. - recursiveSearch (Optional)
- Type: SystemBoolean
Whether the search is recursive. The default value is false.
Return Value
Type:
ICMSNavigationElementIf the Element with matching name doesn't exist, or the Element with matching name is not a Navigation Element, the returned value is null.
See Also