IAssetTreeNodeSiblings Method
|
Retrieves sibling nodes of current Asset Tree Node,
Namespace:
Ingeniux.Runtime.Assets
Assembly:
IGXRuntimeAPI (in IGXRuntimeAPI.dll) Version: 10.3.169
Syntax IEnumerable<IAssetTreeNode> Siblings(
out int currentItemIndex,
bool includeUnmarkedAssets = false
)
Function Siblings (
<OutAttribute> ByRef currentItemIndex As Integer,
Optional includeUnmarkedAssets As Boolean = false
) As IEnumerable(Of IAssetTreeNode)
IEnumerable<IAssetTreeNode^>^ Siblings(
[OutAttribute] int% currentItemIndex,
bool includeUnmarkedAssets = false
)
abstract Siblings :
currentItemIndex : int byref *
?includeUnmarkedAssets : bool
(* Defaults:
let _includeUnmarkedAssets = defaultArg includeUnmarkedAssets false
*)
-> IEnumerable<IAssetTreeNode>
Parameters
- currentItemIndex
- Type: SystemInt32
The position of the specified Asset or Asset Folder among its siblings - includeUnmarkedAssets (Optional)
- Type: SystemBoolean
Whether to include Assets that are not marked for publish
Return Value
Type:
IEnumerableIAssetTreeNodeCollection of sibling Asset Tree Nodes, for the current node.
See Also