Share via


USDStackPanel.Add Method

Definition

Overloads

Add(Object, Boolean)

Adds a control to the stack panel.

Add(Object, String, Boolean, Boolean)

Adds a control to the stack panel.

Add(Object, Boolean)

Adds a control to the stack panel.

public:
 virtual System::Object ^ Add(System::Object ^ child, bool closeButton);
public object Add (object child, bool closeButton);
abstract member Add : obj * bool -> obj
override this.Add : obj * bool -> obj
Public Function Add (child As Object, closeButton As Boolean) As Object

Parameters

child
Object

Specifies the control that is to be added.

closeButton
Boolean

If true, the close button is present; Otherwise false.

Returns

Implements

Applies to

Add(Object, String, Boolean, Boolean)

Adds a control to the stack panel.

public:
 virtual System::Object ^ Add(System::Object ^ child, System::String ^ initializationXml, bool useToolbar, bool closeButton);
public object Add (object child, string initializationXml, bool useToolbar, bool closeButton);
abstract member Add : obj * string * bool * bool -> obj
override this.Add : obj * string * bool * bool -> obj
Public Function Add (child As Object, initializationXml As String, useToolbar As Boolean, closeButton As Boolean) As Object

Parameters

child
Object

Specifies the control to be added to the panel.

initializationXml
String

Specifies the initialization XML.

useToolbar
Boolean

If true, the toolbar is present; otherwise false.

closeButton
Boolean

If true, the close button is present; otherwise false.

Returns

Implements

Applies to