Article | 60000657 |
Type | Bug |
Product | Engine |
Version | 6013 |
Date Added | 10/4/2008 |
Fixed | (10/4/2008) |
Submitted by | Francois Peens |
Summary
Some values are missing from VdConstPrintMode enum of PrinterMode property in vdraw.ocx Wrapper component.
Solution
fixed in 6014.
public
enum VdConstPrintMode{
///
<summary> /// Drawing the screen. /// </summary>SCREEN = 0,
/// <summary> /// Drawing the print preview. /// </summary>PRINT_PREVIEW = 1,
/// <summary> /// Drawing to the printer. /// </summary>PRINT_PRINTER = 2,
/// <summary> /// Draws in the whole preview printer's paper. /// </summary>PRINT_PREVIEW_PAPER = 3,
/// <summary> /// Draws in the whole printer's paper. /// </summary>PRINT_PRINTER_PAPER = 4,
/// <summary> /// Draws in a Svg or PDF or Bitmap file. /// </summary>PRINT_FORMAT = 5,
/// <summary> /// It is an ActionWrapper render . /// </summary>SCREEN_ACTION = 6,
/// <summary> /// Render is used to select figures. /// </summary>SCREEN_SELECT = 7,
/// <summary> /// Render is used to explode figures into lines /// </summary>MODE_EXPLODE = 8,
/// <summary> /// Render is used to calculate the rendering bounding of draw items. /// </summary>MODE_BOUNDINGBOX = 9,
}