Viewbox.Child Property

Definition

Gets or sets the single child element of a Viewbox element.

public:
 property UIElement ^ Child { UIElement ^ get(); void set(UIElement ^ value); };
UIElement Child();

void Child(UIElement value);
public UIElement Child { get; set; }
var uIElement = viewbox.child;
viewbox.child = uIElement;
Public Property Child As UIElement
<ViewBox ...>
  child
</ViewBox>

Property Value

The single child element of a Viewbox element.

Applies to