com.google.gwt.dom.client.Element.getPropertyInt()方法的使用及代码示例

x33g5p2x  于2022-01-19 转载在 其他  
字(6.7k)|赞(0)|评价(0)|浏览(247)

本文整理了Java中com.google.gwt.dom.client.Element.getPropertyInt()方法的一些代码示例,展示了Element.getPropertyInt()的具体用法。这些代码示例主要来源于Github/Stackoverflow/Maven等平台,是从一些精选项目中提取出来的代码,具有较强的参考意义,能在一定程度帮忙到你。Element.getPropertyInt()方法的具体详情如下:
包路径:com.google.gwt.dom.client.Element
类名称:Element
方法名:getPropertyInt

Element.getPropertyInt介绍

[英]Gets an integer property from this element.
[中]从该元素获取整数属性。

代码示例

代码示例来源:origin: com.google.gwt/gwt-servlet

  1. /**
  2. * Gets the amount of spacing that is added around all cells.
  3. *
  4. * @return the cell spacing, in pixels
  5. */
  6. public int getCellSpacing() {
  7. return tableElem.getPropertyInt("cellSpacing");
  8. }

代码示例来源:origin: com.google.gwt/gwt-servlet

  1. /**
  2. * Returns the offsetWidth element property.
  3. *
  4. * @param elem the element
  5. * @return the offsetWidth property
  6. */
  7. static final int getOffsetWidth(Element elem) {
  8. return elem.getPropertyInt("offsetWidth");
  9. }

代码示例来源:origin: com.google.gwt/gwt-servlet

  1. /**
  2. * Gets the amount of padding that is added around all cells.
  3. *
  4. * @return the cell padding, in pixels
  5. */
  6. public int getCellPadding() {
  7. return tableElem.getPropertyInt("cellPadding");
  8. }

代码示例来源:origin: com.google.gwt/gwt-servlet

  1. /**
  2. * Returns the offsetHeight element property.
  3. *
  4. * @param elem the element
  5. * @return the offsetHeight property
  6. */
  7. static final int getOffsetHeight(Element elem) {
  8. return elem.getPropertyInt("offsetHeight");
  9. }

代码示例来源:origin: com.google.gwt/gwt-servlet

  1. /**
  2. * Gets any named property from an element, as an int.
  3. *
  4. * @param elem the element whose property is to be retrieved
  5. * @param prop the name of the property
  6. * @return the property's value as an int
  7. * @deprecated Use {@link Element#getPropertyInt(String)} instead.
  8. */
  9. @Deprecated
  10. public static int getElementPropertyInt(Element elem, String prop) {
  11. return elem.getPropertyInt(prop);
  12. }

代码示例来源:origin: com.google.gwt/gwt-servlet

  1. /**
  2. * Gets an integer property on a given element.
  3. *
  4. * @param elem the element whose property is to be retrieved
  5. * @param attr the name of the property to be retrieved
  6. * @return the property's value as an integer
  7. * @deprecated Use the more appropriately named
  8. * {@link Element#getPropertyInt(String)} instead.
  9. */
  10. @Deprecated
  11. public static int getIntAttribute(Element elem, String attr) {
  12. return elem.getPropertyInt(attr);
  13. }

代码示例来源:origin: com.google.gwt/gwt-servlet

  1. private int findDividerIndex(Element elem) {
  2. while (elem != null && elem != getElement()) {
  3. String expando = elem.getPropertyString("__index");
  4. if (expando != null) {
  5. // Make sure it belongs to me!
  6. int ownerHash = elem.getPropertyInt("__owner");
  7. if (ownerHash == hashCode()) {
  8. // Yes, it's mine.
  9. return Integer.parseInt(expando);
  10. } else {
  11. // It must belong to some nested StackPanel.
  12. return -1;
  13. }
  14. }
  15. elem = DOM.getParent(elem);
  16. }
  17. return -1;
  18. }

代码示例来源:origin: com.google.gwt/gwt-servlet

  1. @Override
  2. protected void onUpdate(double progress) {
  3. if (!growing) {
  4. progress = 1.0 - progress;
  5. }
  6. // Container1 expands (shrinks) to its target height
  7. int height1;
  8. int height2;
  9. if (fixedHeight == -1) {
  10. height1 = (int) (progress * container1.getPropertyInt("scrollHeight"));
  11. height2 = (int) ((1.0 - progress) * container2.getPropertyInt("scrollHeight"));
  12. } else {
  13. height1 = (int) (progress * fixedHeight);
  14. height2 = fixedHeight - height1;
  15. }
  16. // Issue 2339: If the height is 0px, IE7 will display the entire content
  17. // widget instead of hiding it completely.
  18. if (height1 == 0) {
  19. height1 = 1;
  20. height2 = Math.max(1, height2 - 1);
  21. } else if (height2 == 0) {
  22. height2 = 1;
  23. height1 = Math.max(1, height1 - 1);
  24. }
  25. container1.getStyle().setProperty("height", height1 + "px");
  26. container2.getStyle().setProperty("height", height2 + "px");
  27. }

代码示例来源:origin: com.google.gwt/gwt-servlet

  1. @Override
  2. protected void onUpdate(double progress) {
  3. int height = (int) (progress * scrollHeight);
  4. if (!opening) {
  5. height = scrollHeight - height;
  6. }
  7. // Issue 2338: If the height is 0px, IE7 will display all of the children
  8. // instead of hiding them completely.
  9. height = Math.max(height, 1);
  10. curItem.childSpanElem.getStyle().setProperty("height", height + "px");
  11. // We need to set the width explicitly of the item might be cropped
  12. int scrollWidth = curItem.childSpanElem.getPropertyInt("scrollWidth");
  13. curItem.childSpanElem.getStyle().setProperty("width", scrollWidth + "px");
  14. }
  15. }

代码示例来源:origin: net.wetheinter/gwt-user

  1. /**
  2. * Gets the amount of spacing that is added around all cells.
  3. *
  4. * @return the cell spacing, in pixels
  5. */
  6. public int getCellSpacing() {
  7. return tableElem.getPropertyInt("cellSpacing");
  8. }

代码示例来源:origin: com.vaadin.external.gwt/gwt-user

  1. /**
  2. * Returns the offsetHeight element property.
  3. *
  4. * @param elem the element
  5. * @return the offsetHeight property
  6. */
  7. static final int getOffsetHeight(Element elem) {
  8. return elem.getPropertyInt("offsetHeight");
  9. }

代码示例来源:origin: net.wetheinter/gwt-user

  1. /**
  2. * Returns the offsetHeight element property.
  3. *
  4. * @param elem the element
  5. * @return the offsetHeight property
  6. */
  7. static final int getOffsetHeight(Element elem) {
  8. return elem.getPropertyInt("offsetHeight");
  9. }

代码示例来源:origin: com.vaadin.external.gwt/gwt-user

  1. /**
  2. * Gets the amount of padding that is added around all cells.
  3. *
  4. * @return the cell padding, in pixels
  5. */
  6. public int getCellPadding() {
  7. return tableElem.getPropertyInt("cellPadding");
  8. }

代码示例来源:origin: com.vaadin.external.gwt/gwt-user

  1. /**
  2. * Gets the amount of spacing that is added around all cells.
  3. *
  4. * @return the cell spacing, in pixels
  5. */
  6. public int getCellSpacing() {
  7. return tableElem.getPropertyInt("cellSpacing");
  8. }

代码示例来源:origin: net.wetheinter/gwt-user

  1. /**
  2. * Returns the offsetWidth element property.
  3. *
  4. * @param elem the element
  5. * @return the offsetWidth property
  6. */
  7. static final int getOffsetWidth(Element elem) {
  8. return elem.getPropertyInt("offsetWidth");
  9. }

代码示例来源:origin: com.vaadin.external.gwt/gwt-user

  1. /**
  2. * Gets any named property from an element, as an int.
  3. *
  4. * @param elem the element whose property is to be retrieved
  5. * @param prop the name of the property
  6. * @return the property's value as an int
  7. * @deprecated Use {@link Element#getPropertyInt(String)} instead.
  8. */
  9. @Deprecated
  10. public static int getElementPropertyInt(Element elem, String prop) {
  11. return elem.getPropertyInt(prop);
  12. }

代码示例来源:origin: com.google.gwt/gwt-servlet

  1. final Element senderElem = sender.getElement();
  2. int x = event.getClientX() - senderElem.getAbsoluteLeft()
  3. + senderElem.getPropertyInt("scrollLeft")
  4. + Window.getScrollLeft();
  5. int y = event.getClientY() - senderElem.getAbsoluteTop()
  6. + senderElem.getPropertyInt("scrollTop")
  7. + Window.getScrollTop();

代码示例来源:origin: com.extjs/gxt

  1. /**
  2. * Returns the row index.
  3. *
  4. * @param elem the row or child of the row element
  5. * @return the index
  6. */
  7. public int findRowIndex(Element elem) {
  8. Element r = findRow(elem);
  9. return r != null ? r.getPropertyInt("rowIndex") : -1;
  10. }

代码示例来源:origin: com.google.gwt/gwt-servlet

  1. int width = selectedElem.getPropertyInt("offsetWidth");
  2. int height = selectedElem.getPropertyInt("offsetHeight");

代码示例来源:origin: com.github.gwtmaterialdesign/gwt-material

  1. /**
  2. * Retrieve the Integer value from the given Attribute of the range element
  3. *
  4. * @param attribute The name of the attribute on the range element
  5. * @return The Integer vaulue read from the given attribute or null
  6. */
  7. protected Integer getIntFromRangeElement(String attribute) {
  8. Element ele = $(rangeInputElement).asElement();
  9. if (ele != null) {
  10. return ele.getPropertyInt(attribute);
  11. }
  12. return null;
  13. }

相关文章

Element类方法