Enum DiagramPrintExportRegion
Specifies the region that has to be printed or exported in diagram.
Namespace: Syncfusion.Blazor.Diagram
Assembly: Syncfusion.Blazor.dll
Syntax
public enum DiagramPrintExportRegion
Examples
<SfDiagramComponent Height="600px">
<PageSettings Width="500px" Height="400px" @bind-Orientation="PageOrientation.Landscape" />
</SfDiagramComponent>
@code
{
DiagramPrintExportRegion region = DiagramPrintExportRegion.PageSettings;
}
Fields
| Name | Description |
|---|---|
| ClipBounds | Specifies the region specified using ClipBounds property is exported. This is applicable for exporting only. |
| Content | Specifies the content of the diagram without empty space around the content is printed or exported. |
| PageSettings | Specifies the region within the x,y, width and height values of page settings is printed or exported. |