Hinzufügen von Rändern
Contents
[
Hide
]Wie man Ränder hinzufügt
Problem: Wie man Ränder hinzufügt (CADNET-1298).
Tipps: Um dies zu tun, erstellen Sie rasterizationOptions.Margins in CadRasterizationOptions und setzen Sie die notwendigen Parameter.
Beispiel:
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.Margins = new Margins(); | |
rasterizationOptions.Margins.Bottom = 300; | |
rasterizationOptions.Margins.Left = 300; | |
rasterizationOptions.Margins.Right = 300; | |
rasterizationOptions.Margins.Top = 300; |