EntityIsReferencedSourceExisting Property |
For reference object (IsReferenceObject == true), it will try to get its source entity while opening a drawing.
This indicates whether the reference object has source entity.
Namespace: Autodesk.Civil.DatabaseServicesAssembly: AeccDbMgd (in AeccDbMgd.dll) Version: 13.8.0.292
Syntaxpublic bool IsReferencedSourceExisting { get; }
Public ReadOnly Property IsReferencedSourceExisting As Boolean
Get
public:
property bool IsReferencedSourceExisting {
bool get ();
}
Property Value
Boolean
Example
API user can get this property to check status of the DRef.
1if (entity.IsReferenceObject && (!entity.IsReferenceValid || !entity.IsReferencedSourceExisting))
2{
3
4}
See Also