Skip to content
This repository has been archived by the owner on Oct 11, 2023. It is now read-only.

78ebf38a ce79 4a1b 868f 759414175457

haplokuon edited this page May 6, 2023 · 1 revision

GetReferences(T) Method

netDxf 3.0.0 Library

Gets the dxf objects referenced by a T.

Definition

Namespace: netDxf.Collections
Assembly: netDxf (in netDxf.dll) Version: 3.0.0

C#

public List<DxfObjectReference> GetReferences(
	T item
)

VB

Public Function GetReferences ( 
	item As T
) As List(Of DxfObjectReference)

C++

public:
List<DxfObjectReference^>^ GetReferences(
	T item
)

F#

member GetReferences : 
        item : 'T -> List<DxfObjectReference> 

Parameters

  T
Table object.

Return Value

List(DxfObjectReference)
The list of DxfObjects that reference the specified table object.

Remarks

If there is no table object with the specified name in the list the method an empty list.
The Groups collection method GetReferences will always return an empty list since there are no DxfObjects that references them.

See Also

Reference

TableObjects(T) Class
GetReferences Overload
netDxf.Collections Namespace

Clone this wiki locally