public Length(Length newLength) { this.length = newLength.length; this.units = new CoordinateSystem.Units(newLength.units.UnitType); }
public Rectangle(Length Left, Length Top, Size LabelSize) { this.Left = new Length(Left); this.Top = new Length(Top); this.Size = new Size(LabelSize); }
public Size(Length Width, Length Height) { this.Width = new Length(Width); this.Height = new Length(Height); }
public Size(Size oldSize) { this.Width = oldSize.Width; this.Height = oldSize.Height; this.DefaultUnits = oldSize.DefaultUnits; }
public Size(float Width, float Height, System.Drawing.GraphicsUnit GraphicsUnit) { this.Width = new Length(Width, new Tools.CoordinateSystem.Units(GraphicsUnit)); this.Height = new Length(Height, new Tools.CoordinateSystem.Units(GraphicsUnit)); }