Marges toevoegen
Contents
[
Hide
]Hoe marges toe te voegen
Probleem: Hoe marges toe te voegen (CADNET-1298).
Tips: Om dit te doen, maak rasterizationOptions.Margins aan in CadRasterizationOptions en stel de noodzakelijke parameters in.
Voorbeeld:
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; |