FormGroupControl.autoDeclaration Method

Definition

Overloads

autoDeclaration()

Determines whether the system can declare a member variable that has the same name as the control.

autoDeclaration(Boolean)

autoDeclaration()

Determines whether the system can declare a member variable that has the same name as the control.

public:
 override bool autoDeclaration();
public override bool autoDeclaration ();
override this.autoDeclaration : unit -> bool
Public Overrides Function autoDeclaration () As Boolean

Returns

true if the member variable can be declared for this control; otherwise, false.

Remarks

Controls cannot have identical names.

Applies to

autoDeclaration(Boolean)

public:
 override bool autoDeclaration(bool _value);
public override bool autoDeclaration (bool _value);
override this.autoDeclaration : bool -> bool
Public Overrides Function autoDeclaration (_value As Boolean) As Boolean

Parameters

_value
Boolean

A Boolean value that indicates whether the system declares a variable of the same name as a form group control; optional.

Returns

Applies to