[This is preliminary documentation and is subject to change.]

Gets all childrens of current windows

Namespace: Tools.WindowsT.NativeT
Assembly: Tools.Win (in Tools.Win.dll) Version: 1.5.3.38916 (1.5.3.38916)

Syntax

C#
[TypeConverterAttribute(typeof(CollectionConverter))]
[LCategoryAttribute(typeof(ControlsWin), "Relationship_c", "Relationship", 
	LCategoryAttribute..::..enmLookUpOrder.ResourceFirst)]
[LDescriptionAttribute(typeof(ControlsWin), "Children_d", "")]
public IReadOnlyList<Win32Window> Children { get; }
Visual Basic
<TypeConverterAttribute(GetType(CollectionConverter))> _
<LCategoryAttribute(GetType(ControlsWin), "Relationship_c", "Relationship",  _
	LCategoryAttribute..::..enmLookUpOrder.ResourceFirst)> _
<LDescriptionAttribute(GetType(ControlsWin), "Children_d", "")> _
Public ReadOnly Property Children As IReadOnlyList(Of Win32Window)
	Get
Visual C++
[TypeConverterAttribute(typeof(CollectionConverter))]
[LCategoryAttribute(typeof(ControlsWin), L"Relationship_c", L"Relationship", 
	LCategoryAttribute..::..enmLookUpOrder::ResourceFirst)]
[LDescriptionAttribute(typeof(ControlsWin), L"Children_d", L"")]
public:
property IReadOnlyList<Win32Window^>^ Children {
	IReadOnlyList<Win32Window^>^ get ();
}
F#
[<TypeConverterAttribute(typeof(CollectionConverter))>]
[<LCategoryAttribute(typeof(ControlsWin), "Relationship_c", "Relationship", 
    LCategoryAttribute..::..enmLookUpOrder.ResourceFirst)>]
[<LDescriptionAttribute(typeof(ControlsWin), "Children_d", "")>]
member Children : IReadOnlyList<Win32Window>
JScript
function get Children () : IReadOnlyList<Win32Window>

Return Value

Childrens of current window

Exceptions

ExceptionCondition
Tools.API..::..Win32APIExceptionError while enumerating windows. Ie. Handle is invalid

See Also