Share via


xArgs.allowUseOfPreloadedForm Method

Definition

Overloads

allowUseOfPreloadedForm()

Determines if the form launched for this instance may come from the pre-loaded form pool.

allowUseOfPreloadedForm(Boolean)

allowUseOfPreloadedForm()

Determines if the form launched for this instance may come from the pre-loaded form pool.

public:
 virtual bool allowUseOfPreloadedForm();
public virtual bool allowUseOfPreloadedForm ();
abstract member allowUseOfPreloadedForm : unit -> bool
override this.allowUseOfPreloadedForm : unit -> bool
Public Overridable Function allowUseOfPreloadedForm () As Boolean

Returns

true if the form launched for this instance may come from the pre-loaded form pool; otherwise, false.

Remarks

Use of a pre-loaded form is permitted by default. Set this to false only if there are undesired side-effects from the use of a pre-loaded form.

Applies to

allowUseOfPreloadedForm(Boolean)

public:
 virtual bool allowUseOfPreloadedForm(bool _value);
public virtual bool allowUseOfPreloadedForm (bool _value);
abstract member allowUseOfPreloadedForm : bool -> bool
override this.allowUseOfPreloadedForm : bool -> bool
Public Overridable Function allowUseOfPreloadedForm (_value As Boolean) As Boolean

Parameters

_value
Boolean

A Boolean value that determines whether the loaded form can come from the pre-loaded form pool.

Returns

Applies to