Skip to main content

Class ListEntity

Namespace: SuperOffice.WebApi.Data
Assembly: SuperOffice.WebApi.dll
Carrier object for ListEntity. The list entity contains information about a specific list

Inheritance

objectCarrierListEntity

Inherited Members

Carrier.TableRight, Carrier.FieldProperties, object.ToString(), object.Equals(object), object.Equals(object, object), object.ReferenceEquals(object, object), object.GetHashCode(), object.GetType(), object.MemberwiseClone()

Examples

Get ListEntity 123 using the WebApi client:
var configuration = new WebApiConfiguration(url);
var agent = new ListAgent(configuration);
var listEntity = agent.GetListEntity( 123 );

Constructors

ListEntity()

Default constructor - defaults any enum props to 0.

Properties

Deleted

True if the list item is marked as deleted

Property Value

bool

Id

The identity of the list

Property Value

int

InUseByUserDefinedFields

True if this in use by one or more udfields

Property Value

bool

IsCustomList

Indicates if this is a custom list or a standard list

Property Value

bool

IsMDOList

Indicates if this is a MDO list

Property Value

bool

ListType

The type of this list, often indicated by the database name, but not necessarily

Property Value

string

Name

The name of the list

Property Value

string

Rank

The rank of the list

Property Value

int

Tooltip

The tooltip of the list

Property Value

string

UseGroupsAndHeadings

Indicates if this list should use groups and headings

Property Value

bool

See Also

ListAgent