Table of Contents

Interface INamedEntity

Namespace
FemDesign
Assembly
FemDesign.Core.dll

Entities with a name/identifier. E.g "B.42" or "@MyLockedName.1"

public interface INamedEntity
Extension Methods

Properties

Identifier

Identifier part of the name.

string Identifier { get; set; }

Property Value

string

Instance

Instance number.

int Instance { get; }

Property Value

int

LockedIdentifier

When true, FEM-Design will not modify the Instance number of the Name. Note that this might not always be possible.

See https://github.com/strusoft/femdesign-api/issues/81#issuecomment-1250848165 for more info.

bool LockedIdentifier { get; set; }

Property Value

bool

Name

Name of the entity. E.g. "B.42"

string Name { get; }

Property Value

string