Share

MergeStatus

C++

enum MergeStatus {
  kNoChanges = 0x00000000,
  kPlotCfgName = 0x00000001,
  kPlotPaperMargins = 0x00000002,
  kPlotPaperSize = 0x00000004,
  kCanonicalMediaName = 0x00000008,
  kPlotOrigin = 0x00000010,
  kPlotPaperUnits = 0x00000020,
  kPlotViewportBorders = 0x00000040,
  kPlotPlotStyles = 0x00000080,
  kShowPlotStyles = 0x00000100,
  kPlotRotation = 0x00000200,
  kPlotCentered = 0x00000400,
  kPlotHidden = 0x00000800,
  kShadePlot = 0x00001000,
  kShadePlotResLevel = 0x00002000,
  kShadePlotCustomDPI = 0x00004000,
  kPlotType = 0x00008000,
  kPlotWindowArea = 0x00010000,
  kPlotViewName = 0x00020000,
  kScale = 0x00040000,
  kCurrentStlyeSheet = 0x00080000,
  kScaleLineWeights = 0x00100000,
  kPrintLineWeights = 0x00200000,
  kDrawViewportsFirst = 0x00400000,
  kPlotTransparency = 0x00800000
};

File

AcPlPlotInfo.h

Members

Members Description
kNoChanges There are no differences between the layout and the validated plot settings.
kPlotCfgName The plot configuration name is different.
kPlotPaperMargins The margins are different.
kPlotPaperSize The paper size is different.
kCanonicalMediaName The canonical media name is different.
kPlotOrigin The plot origin is different.
kPlotPaperUnits The plot paper units are different.
kPlotViewportBorders The plot viewport borders setting is different.
kPlotPlotStyles The plot with plot styles setting is different.
kShowPlotStyles The show plot styles setting is different.
kPlotRotation The plot rotation is different.
kPlotCentered The center the plot setting is different.
kPlotHidden The plot hidden setting is different.
kShadePlot The shade plot setting is different.
kShadePlotResLevel The shade plot resolution level is different.
kShadePlotCustomDPI The shade plot DPI setting is different.
kPlotType The plot type is different.
kPlotWindowArea The plot area is Window, but the window is different.
kPlotViewName The plot area is View, but the view name is different.
kScale The plot scales are different.
kCurrentStlyeSheet The current style sheet is different.
kScaleLineWeights The scale line weights setting is different.
kPrintLineWeights The print line weights setting is different.
kDrawViewportsFirst The draw viewports first setting is different.

Description

This enumeration describes the differences between validated plot settings and plot settings on the layout object after AcPlPlotInfoValidator::validate() has successfully executed.

Changed Declaration

New:

kPlotTransparency = 0x00800000

Was this information helpful?