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

x33g5p2x  于2022-01-29 转载在 其他  
字(3.2k)|赞(0)|评价(0)|浏览(72)

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

Style.getProperty介绍

[英]Gets the value of a named property.
[中]获取命名属性的值。

代码示例

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

/**
 * Gets the display CSS property.
 */
public final String getDisplay() {
 return getProperty(STYLE_DISPLAY);
}

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

/**
 * Get the opacity css property.
 */
public final String getOpacity() {
 return getProperty(STYLE_OPACITY);
}

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

/**
 * Get the padding-right css property.
 */
public final String getPaddingRight() {
 return getProperty(STYLE_PADDING_RIGHT);
}

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

/**
 * Gets the table-layout property.
 */
public final String getTableLayout() {
 return getProperty(STYLE_TABLE_LAYOUT);
}

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

/**
 * Get the background-image css property.
 */
public final String getBackgroundImage() {
 return getProperty(STYLE_BACKGROUND_IMAGE);
}

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

/**
 * Gets the font-style CSS property.
 */
public final String getFontStyle() {
 return getProperty(STYLE_FONT_STYLE);
}

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

/**
 * Get the margin css property.
 */
public final String getMargin() {
 return getProperty(STYLE_MARGIN);
}

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

/**
 * Get the margin-left css property.
 */
public final String getMarginLeft() {
 return getProperty(STYLE_MARGIN_LEFT);
}

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

/**
 * Get the margin-right css property.
 */
public final String getMarginRight() {
 return getProperty(STYLE_MARGIN_RIGHT);
}

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

/**
 * Gets the overflow-y CSS property. 
 */
public final String getOverflowY() {
 return getProperty(STYLE_OVERFLOW_Y);
}

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

/**
 * Get the padding css property.
 */
public final String getPadding() {
 return getProperty(STYLE_PADDING);
}

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

/**
 * Get the padding-top css property.
 */
public final String getPaddingTop() {
 return getProperty(STYLE_PADDING_TOP);
}

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

/**
 * Get the right css property.
 */
public final String getRight() {
 return getProperty(STYLE_RIGHT);
}

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

/**
 * Get the 'text-indent' CSS property.
 */
public final String getTextIndent() {
 return getProperty(STYLE_TEXT_INDENT);
}

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

/**
 * Get the top css property.
 */
public final String getTop() {
 return getProperty(STYLE_TOP);
}

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

/**
 * Get the border-color css property.
 */
public final String getBorderColor() {
 return getProperty(STYLE_BORDER_COLOR);
}

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

/**
 * Gets the border-style CSS property.
 */
public final String getBorderStyle() {
 return getProperty(STYLE_BORDER_STYLE);
}

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

/**
 * Get the font-size css property.
 */
public final String getFontSize() {
 return getProperty(STYLE_FONT_SIZE);
}

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

/**
 * Get the left css property.
 */
public final String getLeft() {
 return getProperty(STYLE_LEFT);
}

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

/**
 * Get the 'white-space' CSS property.
 */
public final String getWhiteSpace() {
 return getProperty(STYLE_WHITE_SPACE);
}

相关文章

微信公众号

最新文章

更多

Style类方法