Setting up of the pen options
Contents
[
Hide
]How to setting up of the pen options
Issue: How to setting up of the pen options.
Tips: To do this, set the PenOptions fields in the rasterization options.
Example:
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; |