Zmiana wagi linii dla DWG/DXF
Contents
[
Hide
]Jak zmienić wagę linii dla DWG/DXF
Problem: Jak zmienić wagę linii dla DWG/DXF.
Wskazówki: Możesz użyć właściwości LineWeight na jednostkach lub warstwach, aby to zrobić.
Przykład:
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; | |
} |