Configuração das opções da caneta
Contents
[
Hide
]Como configurar as opções da caneta
Problema: Como configurar as opções da caneta.
Dicas: Para fazer isso, defina os campos PenOptions nas opções de rasterização.
Exemplo:
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
CadRasterizationOptions rasterizationOptions = new CadRasterizationOptions(); | |
rasterizationOptions.PenOptions = new PenOptions(); | |
rasterizationOptions.PenOptions.StartCap = LineCap.Flat; | |
rasterizationOptions.PenOptions.EndCap = LineCap.Flat; |