Cambiar el peso de las líneas para DWG/DXF
Contents
[
Hide
]Cómo cambiar el peso de las líneas para DWG/DXF
Problema: Cómo cambiar el peso de las líneas para DWG/DXF.
Consejos: Puedes usar la propiedad LineWeight en entidades o capas para hacer esto.
Ejemplo:
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
using CadImage cadImage = (CadImage)Image.Load(fileName); | |
foreach (var entity in cadImage.Entities) | |
{ | |
entity.LineWeight = 0; | |
} | |
foreach (Aspose.CAD.FileFormats.Cad.CadTables.CadLayerTable layer in cadImage.Layers) | |
{ | |
layer.LineWeight = 0; | |
} |