Class NSWebPanelEntity
Contains information on a web panel.
Constructors
NSWebPanelEntity()
Initializes a new instance of the NSWebPanelEntity class.
Declaration
NSWebPanelEntity Methods
GetDeleted()
Declaration
Bool GetDeleted() Examples
NSWebPanelEntity thing;
Bool deleted = thing.GetDeleted();
Returns
| Type | Description |
| Bool | True if the web panel is marked as deleted. |
GetIcon()
Declaration
Integer GetIcon() Examples
NSWebPanelEntity thing;
Integer icon = thing.GetIcon();
Returns
| Type | Description |
| Integer | The icon of the web panel. |
GetName()
Declaration
String GetName() Examples
NSWebPanelEntity thing;
String name = thing.GetName();
Returns
| Type | Description |
| String | The name of the web panel. |
GetOnCentral()
Declaration
Bool GetOnCentral() Examples
NSWebPanelEntity thing;
Bool onCentral = thing.GetOnCentral();
Returns
| Type | Description |
| Bool | Is the web panel visible when user is on central database. |
GetOnSalesMarketingPocket()
Declaration
Bool GetOnSalesMarketingPocket() Examples
NSWebPanelEntity thing;
Bool onSalesMarketingPocket = thing.GetOnSalesMarketingPocket();
Returns
| Type | Description |
| Bool | Is the web panel visible when user is on pocket client. |
GetOnSalesMarketingWeb()
Declaration
Bool GetOnSalesMarketingWeb() Examples
NSWebPanelEntity thing;
Bool onSalesMarketingWeb = thing.GetOnSalesMarketingWeb();
Returns
| Type | Description |
| Bool | Is the web panel visible when user is on web client. |
GetOnSatellite()
Declaration
Bool GetOnSatellite() Examples
NSWebPanelEntity thing;
Bool onSatellite = thing.GetOnSatellite();
Returns
| Type | Description |
| Bool | Is the web panel visible when user is on a satellite. |
GetOnTravel()
Declaration
Bool GetOnTravel() Examples
NSWebPanelEntity thing;
Bool onTravel = thing.GetOnTravel();
Returns
| Type | Description |
| Bool | Is the web panel visible when user is on travel. |
GetProgId()
Declaration
String GetProgId() Examples
NSWebPanelEntity thing;
String progId = thing.GetProgId();
Returns
| Type | Description |
| String | String key that can be used to uniquely retrieve the panel; particularly useful for partners and others who do not wish to store database IDs. |
GetRank()
Declaration
Integer GetRank() Examples
NSWebPanelEntity thing;
Integer rank = thing.GetRank();
Returns
| Type | Description |
| Integer | The rank of the web panel. |
GetShowInAddressBar()
Declaration
Bool GetShowInAddressBar() Examples
NSWebPanelEntity thing;
Bool showInAddressBar = thing.GetShowInAddressBar();
Returns
| Type | Description |
| Bool | Does the web panel have an address bar. |
GetShowInMenuBar()
Declaration
Bool GetShowInMenuBar() Examples
NSWebPanelEntity thing;
Bool showInMenuBar = thing.GetShowInMenuBar();
Returns
| Type | Description |
| Bool | Does the web panel have a menu bar. |
GetShowInStatusBar()
Declaration
Bool GetShowInStatusBar() Examples
NSWebPanelEntity thing;
Bool showInStatusBar = thing.GetShowInStatusBar();
Returns
| Type | Description |
| Bool | Does the web panel have a status bar. |
GetShowInToolBar()
Declaration
Bool GetShowInToolBar() Examples
NSWebPanelEntity thing;
Bool showInToolBar = thing.GetShowInToolBar();
Returns
| Type | Description |
| Bool | Does the web panel have a toolbar. |
GetTooltip()
Declaration
String GetTooltip() Examples
NSWebPanelEntity thing;
String tooltip = thing.GetTooltip();
Returns
| Type | Description |
| String | The tooltip of the web panel. |
GetUrl()
Declaration
String GetUrl() Examples
NSWebPanelEntity thing;
String url = thing.GetUrl();
Returns
| Type | Description |
| String | The URl. |
GetUrlEncoding()
Declaration
Integer GetUrlEncoding() Examples
NSWebPanelEntity thing;
Integer urlEncoding = thing.GetUrlEncoding();
Returns
| Type | Description |
| Integer | The encoding of the URL. See <xref href="CRMScript.NetServer.UrlEncoding" data-throw-if-not-resolved="false"></xref>. |
GetVisibleIn()
Declaration
Integer GetVisibleIn() Examples
NSWebPanelEntity thing;
Integer visibleIn = thing.GetVisibleIn();
Returns
| Type | Description |
| Integer | The web panel is visible in. |
GetWebPanelId()
Declaration
Integer GetWebPanelId() Examples
NSWebPanelEntity thing;
Integer webPanelId = thing.GetWebPanelId();
Returns
| Type | Description |
| Integer | The identity of the web panel. |
GetWindowName()
Declaration
String GetWindowName() Examples
NSWebPanelEntity thing;
String windowName = thing.GetWindowName();
Returns
| Type | Description |
| String | The window which the URL address is to open in (web panel only). |
SetDeleted(Bool)
Declaration
Void SetDeleted(Bool deleted) Examples
NSWebPanelEntity thing;
Bool deleted;
thing.SetDeleted(deleted);
Parameters
| Type | Name | Description |
| Bool | deleted | True if the web panel is marked as deleted. |
Returns
| Type | Description |
| Void |
SetIcon(Integer)
Declaration
Void SetIcon(Integer icon) Examples
NSWebPanelEntity thing;
Integer icon;
thing.SetIcon(icon);
Parameters
| Type | Name | Description |
| Integer | icon | The icon of the web panel. |
Returns
| Type | Description |
| Void |
SetName(String)
Declaration
Void SetName(String name) Examples
NSWebPanelEntity 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
NSWebPanelEntity thing;
Bool onCentral;
thing.SetOnCentral(onCentral);
Parameters
| Type | Name | Description |
| Bool | onCentral | Is the web panel visible when user is on central database. |
Returns
| Type | Description |
| Void |
SetOnSalesMarketingPocket(Bool)
Declaration
Void SetOnSalesMarketingPocket(Bool onSalesMarketingPocket) Examples
NSWebPanelEntity 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 |
SetOnSalesMarketingWeb(Bool)
Declaration
Void SetOnSalesMarketingWeb(Bool onSalesMarketingWeb) Examples
NSWebPanelEntity thing;
Bool onSalesMarketingWeb;
thing.SetOnSalesMarketingWeb(onSalesMarketingWeb);
Parameters
| Type | Name | Description |
| Bool | onSalesMarketingWeb | Is the web panel visible when user is on web client. |
Returns
| Type | Description |
| Void |
SetOnSatellite(Bool)
Declaration
Void SetOnSatellite(Bool onSatellite) Examples
NSWebPanelEntity thing;
Bool onSatellite;
thing.SetOnSatellite(onSatellite);
Parameters
| Type | Name | Description |
| Bool | onSatellite | Is the web panel visible when user is on a satellite. |
Returns
| Type | Description |
| Void |
SetOnSattelite(Bool)
Declaration
Void SetOnSattelite(Bool onSattelite) Parameters
| Type | Name | Description |
| Bool | onSattelite |
Returns
| Type | Description |
| Void |
SetOnTravel(Bool)
Declaration
Void SetOnTravel(Bool onTravel) Examples
NSWebPanelEntity thing;
Bool onTravel;
thing.SetOnTravel(onTravel);
Parameters
| Type | Name | Description |
| Bool | onTravel | Is the web panel visible when user is on travel. |
Returns
| Type | Description |
| Void |
SetProgId(String)
Declaration
Void SetProgId(String progId) Examples
NSWebPanelEntity thing;
String progId;
thing.SetProgId(progId);
Parameters
| Type | Name | Description |
| String | progId | String key that can be used to uniquely retrieve the panel; particularly useful for partners and others who do not wish to store database IDs. |
Returns
| Type | Description |
| Void |
SetRank(Integer)
Declaration
Void SetRank(Integer rank) Examples
NSWebPanelEntity thing;
Integer rank;
thing.SetRank(rank);
Parameters
| Type | Name | Description |
| Integer | rank | The rank of the web panel. |
Returns
| Type | Description |
| Void |
SetShowInAddressBar(Bool)
Declaration
Void SetShowInAddressBar(Bool showInAddressBar) Examples
NSWebPanelEntity 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
NSWebPanelEntity thing;
Bool showInMenuBar;
thing.SetShowInMenuBar(showInMenuBar);
Parameters
| Type | Name | Description |
| Bool | showInMenuBar | Does the web panel have a menu bar. |
Returns
| Type | Description |
| Void |
SetShowInStatusBar(Bool)
Declaration
Void SetShowInStatusBar(Bool showInStatusBar) Examples
NSWebPanelEntity 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
NSWebPanelEntity thing;
Bool showInToolBar;
thing.SetShowInToolBar(showInToolBar);
Parameters
| Type | Name | Description |
| Bool | showInToolBar | Does the web panel have a toolbar. |
Returns
| Type | Description |
| Void |
SetTooltip(String)
Declaration
Void SetTooltip(String tooltip) Examples
NSWebPanelEntity thing;
String tooltip;
thing.SetTooltip(tooltip);
Parameters
| Type | Name | Description |
| String | tooltip | The tooltip of the web panel. |
Returns
| Type | Description |
| Void |
SetUrl(String)
Declaration
Void SetUrl(String url) Examples
NSWebPanelEntity thing;
String url;
thing.SetUrl(url);
Parameters
| Type | Name | Description |
| String | url | The URl. |
Returns
| Type | Description |
| Void |
SetUrlEncoding(Integer)
Declaration
Void SetUrlEncoding(Integer urlEncoding) Examples
NSWebPanelEntity thing;
Integer urlEncoding;
thing.SetUrlEncoding(urlEncoding);
Parameters
| Type | Name | Description |
| Integer | urlEncoding | The encoding of the URL. See <xref href="CRMScript.NetServer.UrlEncoding" data-throw-if-not-resolved="false"></xref>. |
Returns
| Type | Description |
| Void |
SetVisibleIn(Integer)
Declaration
Void SetVisibleIn(Integer visibleIn) Examples
NSWebPanelEntity thing;
Integer visibleIn;
thing.SetVisibleIn(visibleIn);
Parameters
| Type | Name | Description |
| Integer | visibleIn | The web panel is visible in. See <xref href="CRMScript.NetServer.Navigation" data-throw-if-not-resolved="false"></xref> |
Returns
| Type | Description |
| Void |
SetWebPanelId(Integer)
Declaration
Void SetWebPanelId(Integer webPanelId) Examples
NSWebPanelEntity thing;
Integer webPanelId;
thing.SetWebPanelId(webPanelId);
Parameters
| Type | Name | Description |
| Integer | webPanelId | The identity of the web panel. |
Returns
| Type | Description |
| Void |
SetWindowName(String)
Declaration
Void SetWindowName(String windowName) Examples
NSWebPanelEntity thing;
String windowName;
thing.SetWindowName(windowName);
Parameters
| Type | Name | Description |
| String | windowName | The window which the URL address is to open in (web panel only). |
Returns
| Type | Description |
| Void |