ActionsPane.SetBounds Method

Definition

Sets the bounds of the actions pane.

Overloads

SetBounds(Int32, Int32, Int32, Int32)

Sets the bounds of the actions pane to the specified location and size.

SetBounds(Int32, Int32, Int32, Int32, BoundsSpecified)

Sets the specified bounds of the actions pane to the specified location and size.

Remarks

This method provides the same functionality as the System.Windows.Forms.Control.SetBounds method. For more information about using this method, see System.Windows.Forms.Control.SetBounds.

SetBounds(Int32, Int32, Int32, Int32)

Sets the bounds of the actions pane to the specified location and size.

public:
 void SetBounds(int x, int y, int width, int height);
public void SetBounds (int x, int y, int width, int height);
abstract member SetBounds : int * int * int * int -> unit
Public Sub SetBounds (x As Integer, y As Integer, width As Integer, height As Integer)

Parameters

x
Int32

The new Left property value of the actions pane.

y
Int32

The new Top property value of the actions pane.

width
Int32

The new Width property value of the actions pane.

height
Int32

The new Height property value of the actions pane.

Remarks

This method provides the same functionality as the System.Windows.Forms.Control.SetBounds(Int32, Int32, Int32, Int32) method. For more information about using this method, see System.Windows.Forms.Control.SetBounds(Int32, Int32, Int32, Int32).

Applies to

SetBounds(Int32, Int32, Int32, Int32, BoundsSpecified)

Sets the specified bounds of the actions pane to the specified location and size.

public:
 void SetBounds(int x, int y, int width, int height, System::Windows::Forms::BoundsSpecified specified);
public void SetBounds (int x, int y, int width, int height, System.Windows.Forms.BoundsSpecified specified);
abstract member SetBounds : int * int * int * int * System.Windows.Forms.BoundsSpecified -> unit
Public Sub SetBounds (x As Integer, y As Integer, width As Integer, height As Integer, specified As BoundsSpecified)

Parameters

x
Int32

The new Left property value of the actions pane.

y
Int32

The new Top property value of the actions pane.

width
Int32

The new Width property value of the actions pane.

height
Int32

The new Height property value of the actions pane.

specified
BoundsSpecified

A bitwise combination of the BoundsSpecified values. For any parameter not specified, the current value will be used.

Remarks

This method provides the same functionality as the System.Windows.Forms.Control.SetBounds(Int32, Int32, Int32, Int32, BoundsSpecified) method. For more information about using this method, see System.Windows.Forms.Control.SetBounds(Int32, Int32, Int32, Int32, BoundsSpecified).

Applies to