Table of Contents

TatScript.SelfUnregisterAsLibrary Method

Overloads

TatScript.SelfUnregisterAsLibrary(string)

Removes this script as a registered library, reversing a previous call to SelfRegisterAsLibrary. The script is removed from the scripter component that owns it.

Syntax

Unit: atScript

procedure TatScript.SelfUnregisterAsLibrary(AName: string); overload;

Parameters

<-> Parameter Type Description
AName string

See also

TatScript.SelfUnregisterAsLibrary(TatCustomScripter, string)

Removes this script as a registered library in the specified scripter component, reversing a previous SelfRegisterAsLibrary call.

Remarks

Use SelfUnregisterAsLibrary to remove the script as a registered library in the scripter component specified by AScripter. If the script was previously registered using SelfRegisterAsLibrary, you can use this method to remove it. All routines and global variables of the script will not be accessible anymore from other scripts.

Syntax

Unit: atScript

procedure TatScript.SelfUnregisterAsLibrary(AScripter: TatCustomScripter; AName: string); overload;

Parameters

<-> Parameter Type Description
AScripter TatCustomScripter
AName string

See also