Resource Base
Table of contents

Rect

Class Rect stores the rectangle information.

namespace DCVXamarin
{
    public class Rect
    {
        // A Rect that indicates the location of the torch button.
        // X: The x coordinate of the top-left vertice of the rectangle.
        public double X { get; set; }
        // Y: The y coordinate of the top-left vertice of the rectangle.
        public double Y { get; set; }
        // Width: The width of the rectangle.
        public double Width { get; set; }
        // Height: The height of the rectangle.
        public double Height { get; set; }
    }
}

This page is compatible for:

Is this page helpful?

YesYes NoNo

In this article:

latest version

    Change +