예제 #1
0
 public PlaceholderVObject(ContentVObject content, Math.Path path, float angle)
     : base(path, angle)
 {
     BorderWidth       = 0f;
     FillColor         = RgbColor.Transparent;
     Content           = content;
     ShowMaskedContent = true;
     IsStubContent     = false;
 }
예제 #2
0
 public PlaceholderVObject(ContentVObject content, RotatedRectangleF placeholder)
     : this(content, Math.Path.CreateRectanglePath(placeholder.ToRectangleF()), placeholder.Angle)
 {
 }
예제 #3
0
 public PlaceholderVObject(ContentVObject content)
     : this(content, content.Rectangle)
 {
 }