示例#1
0
 public ejpKMTextEntity(string body, string title, int entityType,
                        Guid id, double x, double y, double width, double height, double fontSize,
                        ejpDocumentReference sourceReference, ejpSolidColor color, string commentText)
 {
     this._body            = body;
     this._title           = title;
     this._id              = id;
     this._x               = x;
     this._y               = y;
     this._width           = width;
     this._height          = height;
     this._entityType      = entityType;
     this._color           = color;
     this._sourceReference = sourceReference;
     this._fontSize        = fontSize;
     this._commentText     = commentText;
 }
示例#2
0
 public ejpKMImageEntity(string title, int entityType,
                         Guid id, double x, double y, double width, double height,
                         ejpDocumentReference sourceReference, ejpSolidColor color,
                         string imageSource, string targetPathData, string commentText)
 {
     this._title           = title;
     this._id              = id;
     this._x               = x;
     this._y               = y;
     this._width           = width;
     this._height          = height;
     this._entityType      = entityType;
     this._color           = color;
     this._sourceReference = sourceReference;
     this._imageSource     = imageSource;
     this._targetPathData  = targetPathData;
     this._commentText     = commentText;
 }