Class EntityPointer<T>
A class that holds reference to an entity
Inherited Members
System.Object.Equals(System.Object)
System.Object.Equals(System.Object, System.Object)
System.Object.GetHashCode()
System.Object.GetType()
System.Object.MemberwiseClone()
System.Object.ReferenceEquals(System.Object, System.Object)
System.Object.ToString()
Namespace: Dxflib.AcadEntities.Pointer
Assembly: Dxflib.dll
Syntax
public class EntityPointer<T>
Type Parameters
Name | Description |
---|---|
T |
Constructors
| Improve this Doc View SourceEntityPointer(String)
Base Constructor
Declaration
public EntityPointer(string handle)
Parameters
Type | Name | Description |
---|---|---|
System.String | handle |
Fields
| Improve this Doc View Source_entity
The Entity reference
Declaration
protected T _entity
Field Value
Type | Description |
---|---|
T |
Properties
| Improve this Doc View SourceEntityType
The type of the entity the object is pointing to
Declaration
public Type EntityType { get; }
Property Value
Type | Description |
---|---|
System.Type |
Handle
The Handle of the Entity
Declaration
public string Handle { get; protected set; }
Property Value
Type | Description |
---|---|
System.String |
RefEntity
The Entity Reference, note that this value should not be null
Declaration
public virtual T RefEntity { get; set; }
Property Value
Type | Description |
---|---|
T |