Configurazione delle opzioni del pennino
Contents
[
Hide
]Come configurare le opzioni del pennino
Problema: Come configurare le opzioni del pennino.
Suggerimenti: Per fare ciò, impostare i campi PenOptions nelle opzioni di rasterizzazione.
Esempio:
This file contains 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
CadRasterizationOptions rasterizationOptions = new CadRasterizationOptions(); | |
rasterizationOptions.PenOptions = new PenOptions(); | |
rasterizationOptions.PenOptions.StartCap = LineCap.Flat; | |
rasterizationOptions.PenOptions.EndCap = LineCap.Flat; |