結果キャンバスの境界線を削除する
Contents
[
Hide
]結果キャンバスの境界線を削除する方法
問題: 結果キャンバスの境界線を削除するにはどうすればよいですか。
ヒント: これには、rasterizationOptions.Zoomに1の値を設定する必要があります。
例:
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.Zoom = 1;dd |