Class NSExtAppEntity

Contains information on an external application.

Constructors

NSExtAppEntity()

Initializes a new instance of the NSExtAppEntity class.

Declaration

NSExtAppEntity

Methods

GetDeleted()

Declaration

Bool GetDeleted()

Examples

NSExtAppEntity thing;
Bool deleted = thing.GetDeleted();

Returns

Type Description
Bool True if the application is marked as deleted.

GetExecuteOnEvent()

Declaration

NSExecuteOnEvent GetExecuteOnEvent()

Examples

NSExtAppEntity thing;
NSExecuteOnEvent executeOnEvent = thing.GetExecuteOnEvent();

Returns

Type Description
NSExecuteOnEvent Events that cause automatic execution of this app. See <xref href="CRMScript.NetServer.ExecuteOnEvent" data-throw-if-not-resolved="false"></xref>

GetExtAppId()

Declaration

Integer GetExtAppId()

Examples

NSExtAppEntity thing;
Integer extAppId = thing.GetExtAppId();

Returns

Type Description
Integer The identity of the external app.

GetFilename()

Declaration

String GetFilename()

Examples

NSExtAppEntity thing;
String filename = thing.GetFilename();

Returns

Type Description
String Filename of the programfile.

GetIcon()

Declaration

Integer GetIcon()

Examples

NSExtAppEntity thing;
Integer icon = thing.GetIcon();

Returns

Type Description
Integer The ID of the icon of the external app.

GetName()

Declaration

String GetName()

Examples

NSExtAppEntity thing;
String name = thing.GetName();

Returns

Type Description
String The name of the web panel.

GetOnCentral()

Declaration

Bool GetOnCentral()

Examples

NSExtAppEntity thing;
Bool onCentral = thing.GetOnCentral();

Returns

Type Description
Bool Is the application visible when user is on central database.

GetOnSalesMarketingPocket()

Declaration

Bool GetOnSalesMarketingPocket()

Examples

NSExtAppEntity thing;
Bool onSalesMarketingPocket = thing.GetOnSalesMarketingPocket();

Returns

Type Description
Bool Is the web panel visible when user is on pocket client.

GetOnSatellite()

Declaration

Bool GetOnSatellite()

Examples

NSExtAppEntity thing;
Bool onSatellite = thing.GetOnSatellite();

Returns

Type Description
Bool Is the application visible when user is on a satellite.

GetOnTravel()

Declaration

Bool GetOnTravel()

Examples

NSExtAppEntity thing;
Bool onTravel = thing.GetOnTravel();

Returns

Type Description
Bool Is the application visible when user is on travel.

GetParameters()

Declaration

String GetParameters()

Examples

NSExtAppEntity thing;
String parameters = thing.GetParameters();

Returns

Type Description
String <template variable><other template variable>

GetPath()

Declaration

String GetPath()

Examples

NSExtAppEntity thing;
String path = thing.GetPath();

Returns

Type Description
String Path where the programfile is located; if empty, PATH is used.

GetRank()

Declaration

Integer GetRank()

Examples

NSExtAppEntity thing;
Integer rank = thing.GetRank();

Returns

Type Description
Integer The rank of the application.

GetShowInAddressBar()

Declaration

Bool GetShowInAddressBar()

Examples

NSExtAppEntity thing;
Bool showInAddressBar = thing.GetShowInAddressBar();

Returns

Type Description
Bool Does the web panel have an address bar.

GetShowInMenuBar()

Declaration

Bool GetShowInMenuBar()

Examples

NSExtAppEntity thing;
Bool showInMenuBar = thing.GetShowInMenuBar();

Returns

Type Description
Bool Does the application have a menu bar.

GetShowInStatusBar()

Declaration

Bool GetShowInStatusBar()

Examples

NSExtAppEntity thing;
Bool showInStatusBar = thing.GetShowInStatusBar();

Returns

Type Description
Bool Does the web panel have a status bar.

GetShowInToolBar()

Declaration

Bool GetShowInToolBar()

Examples

NSExtAppEntity thing;
Bool showInToolBar = thing.GetShowInToolBar();

Returns

Type Description
Bool Does the web panel have a toolbar.

GetShowState()

Declaration

Integer GetShowState()

Examples

NSExtAppEntity thing;
Integer showState = thing.GetShowState();

Returns

Type Description
Integer The application is shown in which state Minimized, Maximized or Restored. See <xref href="CRMScript.NetServer.ShowState" data-throw-if-not-resolved="false"></xref>

GetTooltip()

Declaration

String GetTooltip()

Examples

NSExtAppEntity thing;
String tooltip = thing.GetTooltip();

Returns

Type Description
String The tooltip of the web panel.

GetVisibleIn()

Declaration

Integer GetVisibleIn()

Examples

NSExtAppEntity thing;
Integer visibleIn = thing.GetVisibleIn();

Returns

Type Description
Integer The application is visible in. See <xref href="CRMScript.NetServer.Navigation" data-throw-if-not-resolved="false"></xref>

GetWaitToFinish()

Declaration

Bool GetWaitToFinish()

Examples

NSExtAppEntity thing;
Bool waitToFinish = thing.GetWaitToFinish();

Returns

Type Description
Bool True if the application shall wait for finish event.

GetWorkdir()

Declaration

String GetWorkdir()

Examples

NSExtAppEntity thing;
String workdir = thing.GetWorkdir();

Returns

Type Description
String Directory set to current when loading the application, if different from application's own.

SetDeleted(Bool)

Declaration

Void SetDeleted(Bool deleted)

Examples

NSExtAppEntity thing;
Bool deleted;
thing.SetDeleted(deleted);

Parameters

Type Name Description
Bool deleted True if the application is marked as deleted.

Returns

Type Description
Void

SetExecuteOnEvent(NSExecuteOnEvent)

Declaration

Void SetExecuteOnEvent(NSExecuteOnEvent executeOnEvent)

Examples

NSExtAppEntity thing;
NSExecuteOnEvent executeOnEvent;
thing.SetExecuteOnEvent(executeOnEvent);

Parameters

Type Name Description
NSExecuteOnEvent executeOnEvent Events that cause automatic execution of this app. See <xref href="CRMScript.NetServer.ExecuteOnEvent" data-throw-if-not-resolved="false"></xref>.

Returns

Type Description
Void

SetExtAppId(Integer)

Declaration

Void SetExtAppId(Integer extAppId)

Examples

NSExtAppEntity thing;
Integer extAppId;
thing.SetExtAppId(extAppId);

Parameters

Type Name Description
Integer extAppId The identity of the external app.

Returns

Type Description
Void

SetFilename(String)

Declaration

Void SetFilename(String filename)

Examples

NSExtAppEntity thing;
String filename;
thing.SetFilename(filename);

Parameters

Type Name Description
String filename Filename of the programfile.

Returns

Type Description
Void

SetIcon(Integer)

Declaration

Void SetIcon(Integer icon)

Examples

NSExtAppEntity thing;
Integer icon;
thing.SetIcon(icon);

Parameters

Type Name Description
Integer icon The ID of the icon of the external app.

Returns

Type Description
Void

SetName(String)

Declaration

Void SetName(String name)

Examples

NSExtAppEntity thing;
String name;
thing.SetName(name);

Parameters

Type Name Description
String name The name of the web panel.

Returns

Type Description
Void

SetOnCentral(Bool)

Declaration

Void SetOnCentral(Bool onCentral)

Examples

NSExtAppEntity thing;
Bool onCentral;
thing.SetOnCentral(onCentral);

Parameters

Type Name Description
Bool onCentral Is the application visible when user is on central database.

Returns

Type Description
Void

SetOnSalesMarketingPocket(Bool)

Declaration

Void SetOnSalesMarketingPocket(Bool onSalesMarketingPocket)

Examples

NSExtAppEntity thing;
Bool onSalesMarketingPocket;
thing.SetOnSalesMarketingPocket(onSalesMarketingPocket);

Parameters

Type Name Description
Bool onSalesMarketingPocket Is the web panel visible when user is on pocket client.

Returns

Type Description
Void

SetOnSatellite(Bool)

Declaration

Void SetOnSatellite(Bool onSatellite)

Examples

NSExtAppEntity thing;
Bool onSatellite;
thing.SetOnSatellite(onSatellite);

Parameters

Type Name Description
Bool onSatellite Is the application visible when user is on a satellite.

Returns

Type Description
Void

SetOnTravel(Bool)

Declaration

Void SetOnTravel(Bool onTravel)

Examples

NSExtAppEntity thing;
Bool onTravel;
thing.SetOnTravel(onTravel);

Parameters

Type Name Description
Bool onTravel Is the application visible when user is on travel.

Returns

Type Description
Void

SetParameters(String)

Declaration

Void SetParameters(String parameters)

Examples

NSExtAppEntity thing;
String parameters;
thing.SetParameters(parameters);

Parameters

Type Name Description
String parameters <template variable><other template variable>.

Returns

Type Description
Void

SetPath(String)

Declaration

Void SetPath(String path)

Examples

NSExtAppEntity thing;
String path;
thing.SetPath(path);

Parameters

Type Name Description
String path Path where the programfile is located; if empty, PATH is used.

Returns

Type Description
Void

SetRank(Integer)

Declaration

Void SetRank(Integer rank)

Examples

NSExtAppEntity thing;
Integer rank;
thing.SetRank(rank);

Parameters

Type Name Description
Integer rank The rank of the application.

Returns

Type Description
Void

SetShowInAddressBar(Bool)

Declaration

Void SetShowInAddressBar(Bool showInAddressBar)

Examples

NSExtAppEntity thing;
Bool showInAddressBar;
thing.SetShowInAddressBar(showInAddressBar);

Parameters

Type Name Description
Bool showInAddressBar Does the web panel have an address bar.

Returns

Type Description
Void

SetShowInMenuBar(Bool)

Declaration

Void SetShowInMenuBar(Bool showInMenuBar)

Examples

NSExtAppEntity thing;
Bool showInMenuBar;
thing.SetShowInMenuBar(showInMenuBar);

Parameters

Type Name Description
Bool showInMenuBar Does the application have a menu bar.

Returns

Type Description
Void

SetShowInStatusBar(Bool)

Declaration

Void SetShowInStatusBar(Bool showInStatusBar)

Examples

NSExtAppEntity thing;
Bool showInStatusBar;
thing.SetShowInStatusBar(showInStatusBar);

Parameters

Type Name Description
Bool showInStatusBar Does the web panel have a status bar.

Returns

Type Description
Void

SetShowInToolBar(Bool)

Declaration

Void SetShowInToolBar(Bool showInToolBar)

Examples

NSExtAppEntity thing;
Bool showInToolBar;
thing.SetShowInToolBar(showInToolBar);

Parameters

Type Name Description
Bool showInToolBar Does the web panel have a toolbar.

Returns

Type Description
Void

SetShowState(Integer)

Declaration

Void SetShowState(Integer showState)

Examples

NSExtAppEntity thing;
Integer showState;
thing.SetShowState(showState);

Parameters

Type Name Description
Integer showState The application is shown in which state Minimized, Maximized or Restored. See <xref href="CRMScript.NetServer.ShowState" data-throw-if-not-resolved="false"></xref>.

Returns

Type Description
Void

SetTooltip(String)

Declaration

Void SetTooltip(String tooltip)

Examples

NSExtAppEntity thing;
String tooltip;
thing.SetTooltip(tooltip);

Parameters

Type Name Description
String tooltip The tooltip of the web panel.

Returns

Type Description
Void

SetVisibleIn(Integer)

Declaration

Void SetVisibleIn(Integer visibleIn)

Examples

NSExtAppEntity thing;
Integer visibleIn;
thing.SetVisibleIn(visibleIn);

Parameters

Type Name Description
Integer visibleIn The application is visible in. See <xref href="CRMScript.NetServer.Navigation" data-throw-if-not-resolved="false"></xref>.

Returns

Type Description
Void

SetWaitToFinish(Bool)

Declaration

Void SetWaitToFinish(Bool waitToFinish)

Examples

NSExtAppEntity thing;
Bool waitToFinish;
thing.SetWaitToFinish(waitToFinish);

Parameters

Type Name Description
Bool waitToFinish True if the application shall wait for finish event.

Returns

Type Description
Void

SetWorkdir(String)

Declaration

Void SetWorkdir(String workdir)

Examples

NSExtAppEntity thing;
String workdir;
thing.SetWorkdir(workdir);

Parameters

Type Name Description
String workdir Directory set to current when loading the application, if different from application's own.

Returns

Type Description
Void