펜 옵션 설정
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; |