Skip to main content

PrintOptions Class

Provides access to the map’s printing options.

Namespace: DevExpress.XtraMap.Printing

Assembly: DevExpress.XtraMap.v23.2.dll

NuGet Package: DevExpress.Win.Map

Declaration

public class PrintOptions :
    MapNotificationOptions

The following members return PrintOptions objects:

Remarks

The PrintOptions class provides a set of properties that control how the map is printed. These properties can be accessed via the control’s MapControl.PrintOptions property.

Example

void InitializeSizeModeComboBox() {
    cbSizeMode.DataSource = Enum.GetValues(typeof(MapPrintSizeMode));
}
private void cbSizeMode_SelectedIndexChanged(object sender, EventArgs e) {
    MapPrintSizeMode mode = (MapPrintSizeMode)cbSizeMode.SelectedValue;
    mapControl.PrintOptions.SizeMode = mode;
}
See Also