|
Description
|
Returns/sets whether margin guides will be displayed on the page in previews.
|
Syntax Visual Basic
|
[form.]DXFReader.ShowPlotMargins[ = {True|False}]
|
|
Visual C++
|
BOOL DXFReader.GetShowPlotMargins(); void DXFReader.SetShowPlotMargins(BOOL bNewValue);
|
|
Delphi
|
property ShowPlotMargins: WordBool;
|
|
C#
|
bool DXFReader.ShowPlotMargins;
|
|
Remarks
|
If you set this property to True, the page margins will be shown invoking the PlotPreview method as dashed lines. The figure below shows a print preview using the DXFPlot control showing the plot margins.
 To set the plot margins use the PlotMarginTop, PlotMarginLeft, PlotMarginRight and PlotMarginBottom properties.
This property is used only if the PlotMode property is set to drInch, drMillimeters or drCentimeters.
|
|
Data Type
|
Boolean
|
|
Default Value
|
False
|