VBFixedArrayAttribute Constructors

Definition

Initializes the value of the Bounds property.

Overloads

VBFixedArrayAttribute(Int32)

Initializes the value of the Bounds property.

VBFixedArrayAttribute(Int32, Int32)

Initializes the value of the Bounds property.

VBFixedArrayAttribute(Int32)

Initializes the value of the Bounds property.

public:
 VBFixedArrayAttribute(int UpperBound1);
public VBFixedArrayAttribute (int UpperBound1);
new Microsoft.VisualBasic.VBFixedArrayAttribute : int -> Microsoft.VisualBasic.VBFixedArrayAttribute
Public Sub New (UpperBound1 As Integer)

Parameters

UpperBound1
Int32

Initializes the value of upper field, which represents the size of the first dimension of the array.

Remarks

The constructor runs when the VBFixedArrayAttribute attribute is applied to an array.

See also

Applies to

VBFixedArrayAttribute(Int32, Int32)

Initializes the value of the Bounds property.

public:
 VBFixedArrayAttribute(int UpperBound1, int UpperBound2);
public VBFixedArrayAttribute (int UpperBound1, int UpperBound2);
new Microsoft.VisualBasic.VBFixedArrayAttribute : int * int -> Microsoft.VisualBasic.VBFixedArrayAttribute
Public Sub New (UpperBound1 As Integer, UpperBound2 As Integer)

Parameters

UpperBound1
Int32

Initializes the value of upper field, which represents the size of the first dimension of the array.

UpperBound2
Int32

Initializes the value of upper field, which represents the size of the second dimension of the array.

Remarks

The constructor runs when the VBFixedArrayAttribute attribute is applied to an array.

See also

Applies to