Add DXF to the specified layer of CADImage
Moderators: SDS, support, admin
Add DXF to the specified layer of CADImage
HI,
I need to add the entity of DXF to the specified layer of CADImage.
I Found the function "CADmage.AddScaledDXF", but there was no layer parameter.
and so DXF data was added to "0" layer of CADIMage.
Is there any way to specify the target layer?
Best regards.
Alex
I need to add the entity of DXF to the specified layer of CADImage.
I Found the function "CADmage.AddScaledDXF", but there was no layer parameter.
and so DXF data was added to "0" layer of CADIMage.
Is there any way to specify the target layer?
Best regards.
Alex
Re: Add DXF to the specified layer of CADImage
Hello Alex,
Unfortunately, there is no way to specify the target layer when adding a DXF file as external reference. However, you can change a layer for the added XREF later:
Note: xRefName value should be equal to the external reference file name without the file extension. For example, if the XREF was loaded from the file "c:\drawing1.dxf", xRefName should be "drawing1".
Mikhail
Unfortunately, there is no way to specify the target layer when adding a DXF file as external reference. However, you can change a layer for the added XREF later:
Code: Select all
private void ChangeXRefLayer(CADImage cadImage, string xRefName, string layerName)
{
foreach (CADEntity entity in cadImage.Converter.Entities)
{
if ((entity.EntType == EntityType.Insert) & (entity.EntName == xRefName))
{
entity.Layer = cadImage.Converter.LayerByName(layerName);
cadImage.Converter.Loads(entity);
}
}
}
Mikhail
Technical Support E-mail: support@cadsofttools.com
Chat support on Skype: cadsofttools.support
Chat support on Skype: cadsofttools.support