Configuración de las opciones del bolígrafo
Contents
[
Hide
]Cómo configurar las opciones del bolígrafo
Problema: Cómo configurar las opciones del bolígrafo.
Consejos: Para hacer esto, establezca los campos PenOptions en las opciones de rasterización.
Ejemplo:
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; |