> ## Documentation Index
> Fetch the complete documentation index at: https://docs.superoffice.com/llms.txt
> Use this file to discover all available pages before exploring further.

# SuperOffice.WebApi.Data.ExtAppEntity

# <a id="SuperOffice_WebApi_Data_ExtAppEntity" /> Class ExtAppEntity

Namespace: [SuperOffice.WebApi.Data](SuperOffice.WebApi.Data.md)\
Assembly: SuperOffice.WebApi.dll

Carrier object for ExtAppEntity.
The ext app entity contains information on an external application

```csharp theme={null}
public class ExtAppEntity : Carrier
```

#### Inheritance

[object](https://learn.microsoft.com/dotnet/api/system.object) ←
[Carrier](SuperOffice.WebApi.Data.Carrier.md) ←
[ExtAppEntity](SuperOffice.WebApi.Data.ExtAppEntity.md)

#### Inherited Members

[Carrier.TableRight](SuperOffice.WebApi.Data.Carrier.md#SuperOffice_WebApi_Data_Carrier_TableRight),
[Carrier.FieldProperties](SuperOffice.WebApi.Data.Carrier.md#SuperOffice_WebApi_Data_Carrier_FieldProperties),
[object.ToString()](https://learn.microsoft.com/dotnet/api/system.object.tostring),
[object.Equals(object)](https://learn.microsoft.com/dotnet/api/system.object.equals#system-object-equals\(system-object\)),
[object.Equals(object, object)](https://learn.microsoft.com/dotnet/api/system.object.equals#system-object-equals\(system-object-system-object\)),
[object.ReferenceEquals(object, object)](https://learn.microsoft.com/dotnet/api/system.object.referenceequals),
[object.GetHashCode()](https://learn.microsoft.com/dotnet/api/system.object.gethashcode),
[object.GetType()](https://learn.microsoft.com/dotnet/api/system.object.gettype),
[object.MemberwiseClone()](https://learn.microsoft.com/dotnet/api/system.object.memberwiseclone)

## Examples

Get ExtAppEntity 123 using the WebApi client:
<pre><code class="lang-csharp">var configuration = new WebApiConfiguration(url);
var agent = new ListAgent(configuration);
var extAppEntity = agent.GetExtAppEntity( 123 );</code></pre>

## Constructors

### <a id="SuperOffice_WebApi_Data_ExtAppEntity__ctor" /> ExtAppEntity()

Default constructor - defaults any enum props to 0.

```csharp theme={null}
public ExtAppEntity()
```

## Properties

### <a id="SuperOffice_WebApi_Data_ExtAppEntity_Deleted" /> Deleted

True if the application is marked as deleted

```csharp theme={null}
public virtual bool Deleted { get; set; }
```

#### Property Value

[bool](https://learn.microsoft.com/dotnet/api/system.boolean)

### <a id="SuperOffice_WebApi_Data_ExtAppEntity_ExecuteOnEvent" /> ExecuteOnEvent

Events that cause automatic execution of this app
NULL if unknown enum value.

```csharp theme={null}
[JsonIgnore]
public ExecuteOnEvent? ExecuteOnEvent { get; set; }
```

#### Property Value

[ExecuteOnEvent](SuperOffice.WebApi.Data.ExecuteOnEvent.md)?

#### See Also

[ExtAppEntity](SuperOffice.WebApi.Data.ExtAppEntity.md).[ExecuteOnEvent\_String](SuperOffice.WebApi.Data.ExtAppEntity.md#SuperOffice_WebApi_Data_ExtAppEntity_ExecuteOnEvent_String)

### <a id="SuperOffice_WebApi_Data_ExtAppEntity_ExecuteOnEvent_String" /> ExecuteOnEvent\_String

Events that cause automatic execution of this app
Raw string enum value.

```csharp theme={null}
[JsonProperty("ExecuteOnEvent")]
public string ExecuteOnEvent_String { get; set; }
```

#### Property Value

[string](https://learn.microsoft.com/dotnet/api/system.string)

#### See Also

[ExtAppEntity](SuperOffice.WebApi.Data.ExtAppEntity.md).[ExecuteOnEvent](SuperOffice.WebApi.Data.ExtAppEntity.md#SuperOffice_WebApi_Data_ExtAppEntity_ExecuteOnEvent)

### <a id="SuperOffice_WebApi_Data_ExtAppEntity_ExtAppId" /> ExtAppId

The identity of the external app

```csharp theme={null}
public virtual int ExtAppId { get; set; }
```

#### Property Value

[int](https://learn.microsoft.com/dotnet/api/system.int32)

### <a id="SuperOffice_WebApi_Data_ExtAppEntity_Filename" /> Filename

Filename of the programfile

```csharp theme={null}
public virtual string Filename { get; set; }
```

#### Property Value

[string](https://learn.microsoft.com/dotnet/api/system.string)

### <a id="SuperOffice_WebApi_Data_ExtAppEntity_Icon" /> Icon

The id of the icon of the external app

```csharp theme={null}
public virtual short Icon { get; set; }
```

#### Property Value

[short](https://learn.microsoft.com/dotnet/api/system.int16)

### <a id="SuperOffice_WebApi_Data_ExtAppEntity_Name" /> Name

The name of the web panel

```csharp theme={null}
public virtual string Name { get; set; }
```

#### Property Value

[string](https://learn.microsoft.com/dotnet/api/system.string)

### <a id="SuperOffice_WebApi_Data_ExtAppEntity_OnCentral" /> OnCentral

Is the application visible when user is on central database

```csharp theme={null}
public virtual bool OnCentral { get; set; }
```

#### Property Value

[bool](https://learn.microsoft.com/dotnet/api/system.boolean)

### <a id="SuperOffice_WebApi_Data_ExtAppEntity_OnSalesMarketingPocket" /> OnSalesMarketingPocket

Is the webpanel visible when user is on pocket client

```csharp theme={null}
public virtual bool OnSalesMarketingPocket { get; set; }
```

#### Property Value

[bool](https://learn.microsoft.com/dotnet/api/system.boolean)

### <a id="SuperOffice_WebApi_Data_ExtAppEntity_OnSatellite" /> OnSatellite

Is the application visible when user is on a satellite

```csharp theme={null}
public virtual bool OnSatellite { get; set; }
```

#### Property Value

[bool](https://learn.microsoft.com/dotnet/api/system.boolean)

### <a id="SuperOffice_WebApi_Data_ExtAppEntity_OnTravel" /> OnTravel

Is the application visible when user is on travel

```csharp theme={null}
public virtual bool OnTravel { get; set; }
```

#### Property Value

[bool](https://learn.microsoft.com/dotnet/api/system.boolean)

### <a id="SuperOffice_WebApi_Data_ExtAppEntity_Parameters" /> Parameters

\<template variable> \<other template variable>

```csharp theme={null}
public virtual string Parameters { get; set; }
```

#### Property Value

[string](https://learn.microsoft.com/dotnet/api/system.string)

### <a id="SuperOffice_WebApi_Data_ExtAppEntity_Path" /> Path

Path where the programfile is located; if empty, PATH is used

```csharp theme={null}
public virtual string Path { get; set; }
```

#### Property Value

[string](https://learn.microsoft.com/dotnet/api/system.string)

### <a id="SuperOffice_WebApi_Data_ExtAppEntity_Rank" /> Rank

The rank of the application

```csharp theme={null}
public virtual int Rank { get; set; }
```

#### Property Value

[int](https://learn.microsoft.com/dotnet/api/system.int32)

### <a id="SuperOffice_WebApi_Data_ExtAppEntity_ShowInAddressBar" /> ShowInAddressBar

Does the webpanel have an address bar

```csharp theme={null}
public virtual bool ShowInAddressBar { get; set; }
```

#### Property Value

[bool](https://learn.microsoft.com/dotnet/api/system.boolean)

### <a id="SuperOffice_WebApi_Data_ExtAppEntity_ShowInMenuBar" /> ShowInMenuBar

Does the application have a menu bar

```csharp theme={null}
public virtual bool ShowInMenuBar { get; set; }
```

#### Property Value

[bool](https://learn.microsoft.com/dotnet/api/system.boolean)

### <a id="SuperOffice_WebApi_Data_ExtAppEntity_ShowInStatusBar" /> ShowInStatusBar

Does the webpanel have a status bar

```csharp theme={null}
public virtual bool ShowInStatusBar { get; set; }
```

#### Property Value

[bool](https://learn.microsoft.com/dotnet/api/system.boolean)

### <a id="SuperOffice_WebApi_Data_ExtAppEntity_ShowInToolBar" /> ShowInToolBar

Does the webpanel have a toolbar

```csharp theme={null}
public virtual bool ShowInToolBar { get; set; }
```

#### Property Value

[bool](https://learn.microsoft.com/dotnet/api/system.boolean)

### <a id="SuperOffice_WebApi_Data_ExtAppEntity_ShowState" /> ShowState

The application is shown in which state Minimized, Maximized or Restored
NULL if unknown enum value.

```csharp theme={null}
[JsonIgnore]
public ShowState? ShowState { get; set; }
```

#### Property Value

[ShowState](SuperOffice.WebApi.Data.ShowState.md)?

#### See Also

[ExtAppEntity](SuperOffice.WebApi.Data.ExtAppEntity.md).[ShowState\_String](SuperOffice.WebApi.Data.ExtAppEntity.md#SuperOffice_WebApi_Data_ExtAppEntity_ShowState_String)

### <a id="SuperOffice_WebApi_Data_ExtAppEntity_ShowState_String" /> ShowState\_String

The application is shown in which state Minimized, Maximized or Restored
Raw string enum value.

```csharp theme={null}
[JsonProperty("ShowState")]
public string ShowState_String { get; set; }
```

#### Property Value

[string](https://learn.microsoft.com/dotnet/api/system.string)

#### See Also

[ExtAppEntity](SuperOffice.WebApi.Data.ExtAppEntity.md).[ShowState](SuperOffice.WebApi.Data.ExtAppEntity.md#SuperOffice_WebApi_Data_ExtAppEntity_ShowState)

### <a id="SuperOffice_WebApi_Data_ExtAppEntity_Tooltip" /> Tooltip

The tooltip of the web panel

```csharp theme={null}
public virtual string Tooltip { get; set; }
```

#### Property Value

[string](https://learn.microsoft.com/dotnet/api/system.string)

### <a id="SuperOffice_WebApi_Data_ExtAppEntity_VisibleIn" /> VisibleIn

The application is visible in
NULL if unknown enum value.

```csharp theme={null}
[JsonIgnore]
public Navigation? VisibleIn { get; set; }
```

#### Property Value

[Navigation](SuperOffice.WebApi.Data.Navigation.md)?

#### See Also

[ExtAppEntity](SuperOffice.WebApi.Data.ExtAppEntity.md).[VisibleIn\_String](SuperOffice.WebApi.Data.ExtAppEntity.md#SuperOffice_WebApi_Data_ExtAppEntity_VisibleIn_String)

### <a id="SuperOffice_WebApi_Data_ExtAppEntity_VisibleIn_String" /> VisibleIn\_String

The application is visible in
Raw string enum value.

```csharp theme={null}
[JsonProperty("VisibleIn")]
public string VisibleIn_String { get; set; }
```

#### Property Value

[string](https://learn.microsoft.com/dotnet/api/system.string)

#### See Also

[ExtAppEntity](SuperOffice.WebApi.Data.ExtAppEntity.md).[VisibleIn](SuperOffice.WebApi.Data.ExtAppEntity.md#SuperOffice_WebApi_Data_ExtAppEntity_VisibleIn)

### <a id="SuperOffice_WebApi_Data_ExtAppEntity_WaitToFinish" /> WaitToFinish

True if the application shall wait for fininsh event

```csharp theme={null}
public virtual bool WaitToFinish { get; set; }
```

#### Property Value

[bool](https://learn.microsoft.com/dotnet/api/system.boolean)

### <a id="SuperOffice_WebApi_Data_ExtAppEntity_Workdir" /> Workdir

Directory set to current when loading the application, if different from application's own

```csharp theme={null}
public virtual string Workdir { get; set; }
```

#### Property Value

[string](https://learn.microsoft.com/dotnet/api/system.string)

## See Also

[ListAgent](SuperOffice.WebApi.Agents.ListAgent.md)


## Related topics

- [SuperOffice.WebApi.Agents.IListAgent](/en/api/reference/webapi/SuperOffice.WebApi.Agents.IListAgent.md)
- [SuperOffice.WebApi.Agents.ListAgent](/en/api/reference/webapi/SuperOffice.WebApi.Agents.ListAgent.md)
- [SuperOffice.WebApi.Data.AppointmentEntity](/en/api/reference/webapi/SuperOffice.WebApi.Data.AppointmentEntity.md)
- [SuperOffice.WebApi.Data.AppointmentExternalOwner](/en/api/reference/webapi/SuperOffice.WebApi.Data.AppointmentExternalOwner.md)
- [SuperOffice.WebApi.Data.Appointment MoveExtendedRequest](/en/api/reference/webapi/SuperOffice.WebApi.Data.Appointment_MoveExtendedRequest.md)
- [SuperOffice.WebApi.Data.DocumentEntity](/en/api/reference/webapi/SuperOffice.WebApi.Data.DocumentEntity.md)
