GWT 2.4.0

Uses of Class
com.google.gwt.dom.client.Style.Unit

Packages that use Style.Unit
com.google.gwt.dom.client Classes for low-level DOM programming. 
com.google.gwt.layout.client Classes for laying out container elements. 
com.google.gwt.user.cellview.client The "cellview" widget set. 
com.google.gwt.user.client.ui Widgets, Panels, and other user-interface classes. 
 

Uses of Style.Unit in com.google.gwt.dom.client
 

Methods in com.google.gwt.dom.client that return Style.Unit
static Style.Unit Style.Unit.valueOf(java.lang.String name)
          Returns the enum constant of this type with the specified name.
static Style.Unit[] Style.Unit.values()
          Returns an array containing the constants of this enum type, in the order they are declared.
 

Methods in com.google.gwt.dom.client with parameters of type Style.Unit
 void Style.setBorderWidth(double value, Style.Unit unit)
          Set the border-width css property.
 void Style.setBottom(double value, Style.Unit unit)
          Set the bottom css property.
 void Style.setFontSize(double value, Style.Unit unit)
          Set the font-size css property.
 void Style.setHeight(double value, Style.Unit unit)
          Set the height css property.
 void Style.setLeft(double value, Style.Unit unit)
          Set the left css property.
 void Style.setMargin(double value, Style.Unit unit)
          Set the margin css property.
 void Style.setMarginBottom(double value, Style.Unit unit)
          Set the margin-bottom css property.
 void Style.setMarginLeft(double value, Style.Unit unit)
          Set the margin-left css property.
 void Style.setMarginRight(double value, Style.Unit unit)
          Set the margin-right css property.
 void Style.setMarginTop(double value, Style.Unit unit)
          Set the margin-top css property.
 void Style.setPadding(double value, Style.Unit unit)
          Set the padding css property.
 void Style.setPaddingBottom(double value, Style.Unit unit)
          Set the padding-bottom css property.
 void Style.setPaddingLeft(double value, Style.Unit unit)
          Set the padding-left css property.
 void Style.setPaddingRight(double value, Style.Unit unit)
          Set the padding-right css property.
 void Style.setPaddingTop(double value, Style.Unit unit)
          Set the padding-top css property.
 void Style.setProperty(java.lang.String name, double value, Style.Unit unit)
          Sets the value of a named property in the specified units.
 void Style.setRight(double value, Style.Unit unit)
          Set the right css property.
 void Style.setTop(double value, Style.Unit unit)
          Set the top css property.
 void Style.setVerticalAlign(double value, Style.Unit unit)
          Sets the vertical-align CSS property.
 void Style.setWidth(double value, Style.Unit unit)
          Set the width css property.
 

Uses of Style.Unit in com.google.gwt.layout.client
 

Methods in com.google.gwt.layout.client with parameters of type Style.Unit
 double Layout.getUnitSize(Style.Unit unit, boolean vertical)
          Returns the size of one unit, in pixels, in the context of this layout.
 void Layout.Layer.setBottomHeight(double bottom, Style.Unit bottomUnit, double height, Style.Unit heightUnit)
          Sets the layer's bottom and height values.
 void Layout.Layer.setLeftRight(double left, Style.Unit leftUnit, double right, Style.Unit rightUnit)
          Sets the layer's left and right values.
 void Layout.Layer.setLeftWidth(double left, Style.Unit leftUnit, double width, Style.Unit widthUnit)
          Sets the layer's left and width values.
 void Layout.Layer.setRightWidth(double right, Style.Unit rightUnit, double width, Style.Unit widthUnit)
          Sets the layer's right and width values.
 void Layout.Layer.setTopBottom(double top, Style.Unit topUnit, double bottom, Style.Unit bottomUnit)
          Sets the layer's top and bottom values.
 void Layout.Layer.setTopHeight(double top, Style.Unit topUnit, double height, Style.Unit heightUnit)
          Sets the layer's top and height values.
 

Uses of Style.Unit in com.google.gwt.user.cellview.client
 

Methods in com.google.gwt.user.cellview.client with parameters of type Style.Unit
 void AbstractCellTable.setColumnWidth(Column<T,?> column, double width, Style.Unit unit)
          Set the width of a Column.
 void CellTable.setColumnWidth(Column<T,?> column, double width, Style.Unit unit)
          Set the width of a Column.
 void DataGrid.setMinimumTableWidth(double value, Style.Unit unit)
          Set the minimum width of the tables in this widget.
 void DataGrid.setTableWidth(double value, Style.Unit unit)
          Set the width of the tables in this widget.
 

Uses of Style.Unit in com.google.gwt.user.client.ui
 

Methods in com.google.gwt.user.client.ui that return Style.Unit
protected  Style.Unit DockLayoutPanel.getUnit()
           
 

Methods in com.google.gwt.user.client.ui with parameters of type Style.Unit
 void LayoutPanel.setWidgetBottomHeight(IsWidget child, double bottom, Style.Unit bottomUnit, double height, Style.Unit heightUnit)
          Overloaded version for IsWidget.
 void LayoutPanel.setWidgetBottomHeight(Widget child, double bottom, Style.Unit bottomUnit, double height, Style.Unit heightUnit)
          Sets the child widget's bottom and height values.
 void LayoutPanel.setWidgetLeftRight(IsWidget child, double left, Style.Unit leftUnit, double right, Style.Unit rightUnit)
          Overloaded version for IsWidget.
 void LayoutPanel.setWidgetLeftRight(Widget child, double left, Style.Unit leftUnit, double right, Style.Unit rightUnit)
          Sets the child widget's left and right values.
 void LayoutPanel.setWidgetLeftWidth(IsWidget child, double left, Style.Unit leftUnit, double width, Style.Unit widthUnit)
          Overloaded version for IsWidget.
 void LayoutPanel.setWidgetLeftWidth(Widget child, double left, Style.Unit leftUnit, double width, Style.Unit widthUnit)
          Sets the child widget's left and width values.
 void LayoutPanel.setWidgetRightWidth(IsWidget child, double right, Style.Unit rightUnit, double width, Style.Unit widthUnit)
          Overloaded version for IsWidget.
 void LayoutPanel.setWidgetRightWidth(Widget child, double right, Style.Unit rightUnit, double width, Style.Unit widthUnit)
          Sets the child widget's right and width values.
 void LayoutPanel.setWidgetTopBottom(IsWidget child, double top, Style.Unit topUnit, double bottom, Style.Unit bottomUnit)
          Overloaded version for IsWidget.
 void LayoutPanel.setWidgetTopBottom(Widget child, double top, Style.Unit topUnit, double bottom, Style.Unit bottomUnit)
          Sets the child widget's top and bottom values.
 void LayoutPanel.setWidgetTopHeight(IsWidget child, double top, Style.Unit topUnit, double height, Style.Unit heightUnit)
          Overloaded version for IsWidget.
 void LayoutPanel.setWidgetTopHeight(Widget child, double top, Style.Unit topUnit, double height, Style.Unit heightUnit)
          Sets the child widget's top and height values.
 

Constructors in com.google.gwt.user.client.ui with parameters of type Style.Unit
DockLayoutPanel(Style.Unit unit)
          Creates an empty dock panel.
StackLayoutPanel(Style.Unit unit)
          Creates an empty stack panel.
TabLayoutPanel(double barHeight, Style.Unit barUnit)
          Creates an empty tab panel.
 


GWT 2.4.0