Класс Sys.UI.Bounds
Создает объект, содержащий набор координат, которые выражены целыми числами и представляют позицию, ширину и высоту.
Пространство имен: Sys.UI
Наследования: отсутствуют
var objectBoundsVar = new Sys.UI.Bounds(x, y, width, height);
Конструкторы
Имя |
Описание |
---|---|
Инициализирует новый экземпляр класса Sys.UI.Bounds. |
Члены
Имя |
Описание |
---|---|
Получает высоту объекта Bounds в точках. |
|
Получает ширину объекта Bounds в точках. |
|
Получает Х-координату объекта Bounds в точках. |
|
Получает Y-координату объекта Bounds в точках. |
Заметки
Метод getBounds класса Sys.UI.DomElement возвращает объект Bounds.
Пример
В следующем примере показано, как использовать класс Bounds.
// Get the bounds of the element
var elementRef = $get("Label1");
var elementBounds = Sys.UI.DomElement.getBounds(elementRef);
var result = '';
result += "Label1 bounds x = " + elementBounds.x + "<br/>";
result += "Label1 bounds y = " + elementBounds.y + "<br/>";
result += "Label1 bounds width = " + elementBounds.width + "<br/>";
result += "Label1 bounds height = " + elementBounds.height + "<p/>";
// Get the bounds of the element
var elementRef = $get("Label1");
var elementBounds = Sys.UI.DomElement.getBounds(elementRef);
var result = '';
result += "Label1 bounds x = " + elementBounds.x + "<br/>";
result += "Label1 bounds y = " + elementBounds.y + "<br/>";
result += "Label1 bounds width = " + elementBounds.width + "<br/>";
result += "Label1 bounds height = " + elementBounds.height + "<p/>";