You are here: Start » FIL.NET » Function Reference » System » Interoperability » FIL.LoadEntities_FromDxf

FIL.LoadEntities_FromDxf

Loads entities from a DXF file as an array of point arrays.

Namespace:FilNet
Assembly:FIL.NET.dll

Syntax

C++
C#
 
public static void LoadEntities_FromDxf
(
	string inDxfFile,
	float inScale,
	NullableRef<IList<string>> inLayersToDraw,
	out FilNet.Point2D outOrigin,
	IList<List<FilNet.Point2D>> outEntities,
	IList<string> diagFileLayersNames
)

Parameters

Name Type Range Default Description
inDxfFilestring
inScalefloat<0.0f, INF>10.0fScale (pixels per millimeter). Default value: 10.0f.
inLayersToDrawFilNet.NullableRef<System.Collections.Generic.IList<string>>Names of layers to draw. Names of all layers are available at the 'diagFileLayersNames' output. Default value: ftl::NIL.
outOriginFilNet.Point2DLocation of the origin from DXF on 'outImage'.
outEntitiesSystem.Collections.Generic.IList<System.Collections.Generic.List<FilNet.Point2D>>
diagFileLayersNamesSystem.Collections.Generic.IList<string>Names of all layers in DXF file.

Function Overrides

See also