Share via


FormReferenceObject.visible Method

Definition

Overloads

visible()

Sets or returns a value that indicates whether the control is visible.

visible(Boolean)

visible()

Sets or returns a value that indicates whether the control is visible.

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

Returns

true if the control is visible; otherwise, false. The default is true.

Remarks

Controls that refer to a data source field are visible only when the visible property is set to true on both the control and the underlying data source field. By setting the property on the data source field instead of the control, you make sure that the field is handled consistently throughout the form. This makes upgrades easier.

Applies to

visible(Boolean)

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

Parameters

_value
Boolean

The value that is assigned to the visibility setting for the control.

Returns

Applies to