ペンオプションの設定
Contents
[
Hide
]ペンオプションの設定方法
問題: ペンオプションを設定する方法。
ヒント: これを行うには、ラスタライズオプションでPenOptionsフィールドを設定します。
例:
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; |