ReportGuidControl.widthMode Method

Definition

Overloads

widthMode()

Gets or sets the calculation mode of the width of the control.

widthMode(Int32)

widthMode()

Gets or sets the calculation mode of the width of the control.

public:
 virtual int widthMode();
public virtual int widthMode ();
abstract member widthMode : unit -> int
override this.widthMode : unit -> int
Public Overridable Function widthMode () As Integer

Returns

An integer value that indicates the current calculation mode.

Remarks

Calculate the width according to the following table:

Mode. Width Calculation.
Exact. The exact width in pixels of the controls is used.
Auto. The width of the control is calculated automatically and the value parameter is ignored.
Column width. The layout of the form determines the width of the control.

The width of the control might change when the mode is set to auto or column width.

Applies to

widthMode(Int32)

public:
 virtual int widthMode(int _value);
public virtual int widthMode (int _value);
abstract member widthMode : int -> int
override this.widthMode : int -> int
Public Overridable Function widthMode (_value As Integer) As Integer

Parameters

_value
Int32

Returns

Applies to