public DOMRectReadOnly(DOMRectReadOnlyOptions options) { this.X = options.X; this.Y = options.Y; this.Width = options.Width; this.Height = options.Height; }
public static DOMRectReadOnly FromRect(DOMRectReadOnlyOptions options) { return(new DOMRectReadOnly(options)); }