Overrides
GetVisualChild(Int32), and returns a child at the specified index from a collection of child elements.
Namespace: Dapfor.Wpf.ControlsAssembly: Dapfor.Wpf (in Dapfor.Wpf.dll) Version: 4.1.0.26317 (4.1.0.26317)
Syntax
C# |
---|
protected override Visual GetVisualChild(
int index
) |
Visual Basic |
---|
Protected Overrides Function GetVisualChild (
index As Integer
) As Visual |
Visual C++ |
---|
protected:
virtual Visual^ GetVisualChild(
int index
) override |
F# |
---|
abstract GetVisualChild :
index : int -> Visual
override GetVisualChild :
index : int -> Visual |
Parameters
- index
- Type: System..::..Int32
The zero-based index of the requested child element in the collection.
Return Value
Type:
VisualThe requested child element. This should not return null; if the provided index is out of range, an exception is thrown.
See Also