Show / Hide Table of Contents

Class WebPanelEntity

The web panel entity contains information on a web panel

Carrier object for WebPanelEntity. Services for the WebPanelEntity Carrier is available from the List Agent.
Inheritance
object
WebPanelEntity
Namespace: SuperOffice.CRM.Services
Assembly: SuperOffice.Services.dll
Syntax
[DataContract(Namespace = "http://www.superoffice.net/ws/crm/NetServer/11.1.0.0")]
public class WebPanelEntity : Carrier
Examples

Get WebPanelEntity 123 using the agent:

using SuperOffice;
using SuperOffice.CRM.Services;

using (SoSession mySession = SoSession.Authenticate("user", "pass"))
{
   var agent = new ListAgent();
   var webPanelEntity = agent.GetWebPanelEntity( 123 );
}

Constructors

WebPanelEntity()

Default constructor

Declaration
public WebPanelEntity()
See Also
IListAgent

Properties

AlwaysReloadOnShow

If set to true, the content will reload every time the panel is shown

Declaration
[DataMember]
public virtual bool AlwaysReloadOnShow { get; set; }
Property Value
Type Description
bool
See Also
IListAgent

Deleted

True if the web panel is marked as deleted

Declaration
[DataMember]
public virtual bool Deleted { get; set; }
Property Value
Type Description
bool
See Also
IListAgent

Icon

The icon of the webpanel

Declaration
[DataMember]
public virtual short Icon { get; set; }
Property Value
Type Description
short
See Also
IListAgent

Name

The name of the web panel

Declaration
[DataMember]
public virtual string Name { get; set; }
Property Value
Type Description
string
See Also
IListAgent

NeverReloadOnCurrentChange

If set to true, the content will not reload on current changes, only applies to sidepanels

Declaration
[DataMember]
public virtual bool NeverReloadOnCurrentChange { get; set; }
Property Value
Type Description
bool
See Also
IListAgent

OnCentral

Is the webpanel visible when user is on central database

Declaration
[DataMember]
public virtual bool OnCentral { get; set; }
Property Value
Type Description
bool
See Also
IListAgent

OnSalesMarketingPocket

Is the webpanel visible when user is on pocket client

Declaration
[DataMember]
public virtual bool OnSalesMarketingPocket { get; set; }
Property Value
Type Description
bool
See Also
IListAgent

OnSalesMarketingWeb

Is the webpanel visible when user is on web client

Declaration
[DataMember]
public virtual bool OnSalesMarketingWeb { get; set; }
Property Value
Type Description
bool
See Also
IListAgent

OnSatellite

Is the webpanel visible when user is on a satellite

Declaration
[DataMember]
public virtual bool OnSatellite { get; set; }
Property Value
Type Description
bool
See Also
IListAgent

OnTravel

Is the webpanel visible when user is on travel

Declaration
[DataMember]
public virtual bool OnTravel { get; set; }
Property Value
Type Description
bool
See Also
IListAgent

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 ID's

Declaration
[DataMember]
public virtual string ProgId { get; set; }
Property Value
Type Description
string
See Also
IListAgent

Rank

The rank of the web panel

Declaration
[DataMember]
public virtual int Rank { get; set; }
Property Value
Type Description
int
See Also
IListAgent

ShowInAddressBar

Does the webpanel have an address bar

Declaration
[DataMember]
public virtual bool ShowInAddressBar { get; set; }
Property Value
Type Description
bool
See Also
IListAgent

ShowInMenuBar

Does the webpanel have a menu bar

Declaration
[DataMember]
public virtual bool ShowInMenuBar { get; set; }
Property Value
Type Description
bool
See Also
IListAgent

ShowInStatusBar

Does the webpanel have a status bar

Declaration
[DataMember]
public virtual bool ShowInStatusBar { get; set; }
Property Value
Type Description
bool
See Also
IListAgent

ShowInToolBar

Does the webpanel have a toolbar

Declaration
[DataMember]
public virtual bool ShowInToolBar { get; set; }
Property Value
Type Description
bool
See Also
IListAgent

Tooltip

The tooltip of the web panel

Declaration
[DataMember]
public virtual string Tooltip { get; set; }
Property Value
Type Description
string
See Also
IListAgent

Url

The url

Declaration
[DataMember]
public virtual string Url { get; set; }
Property Value
Type Description
string
See Also
IListAgent

UrlEncoding

The encoding of the URL

Declaration
[DataMember]
public virtual UrlEncoding UrlEncoding { get; set; }
Property Value
Type Description
UrlEncoding
See Also
IListAgent

VisibleIn

The webpanel is visible in

Declaration
[DataMember]
public virtual Navigation VisibleIn { get; set; }
Property Value
Type Description
Navigation
See Also
IListAgent

WebPanelId

The identity of the web panel

Declaration
[DataMember]
public virtual int WebPanelId { get; set; }
Property Value
Type Description
int
See Also
IListAgent

WindowName

The window which the URL address is to open in (webpanel only)

Declaration
[DataMember]
public virtual string WindowName { get; set; }
Property Value
Type Description
string
See Also
IListAgent

Methods

ToString()

Returns the carrier contents as a formatted string.

Declaration
public override string ToString()
Returns
Type Description
string

The carrier contents.

See Also
IListAgent

ToString(string)

Returns the carrier contents as a formatted string, useful for debugging. Each line in the output is prefixed with the input value.

Declaration
public string ToString(string prefix)
Parameters
Type Name Description
string prefix

The line prefix (typically used for indenting)

Returns
Type Description
string

The carrier contents.

See Also
IListAgent

See Also

IListAgent
© SuperOffice. All rights reserved.
SuperOffice |  Community |  Release Notes |  Privacy |  Site feedback |  Search Docs |  About Docs |  Contribute |  Back to top