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