Table of Contents

Class PaintSize

Namespace
CSharpToJavaScript.APIs.JS
Assembly
CSharpToJavaScript.dll

The PaintSize interface of the CSS Painting API represents the size of the output bitmap that the author should draw.

[Value("PaintSize")]
public class PaintSize
Inheritance
PaintSize
Inherited Members

Remarks

Constructors

PaintSize()

public PaintSize()

Properties

Height

The height read-only property of the PaintSize interface returns the height of the output bitmap that the author should draw.

[Value("height")]
public Number Height { get; }

Property Value

Number

A floating point number.

Remarks

Width

The width read-only property of the PaintSize interface returns the width of the output bitmap that the author should draw.

[Value("width")]
public Number Width { get; }

Property Value

Number

A floating point number.

Remarks