| java.lang.Object org.directwebremoting.proxy.io.Context jsx3.lang.Object jsx3.html.Tag jsx3.html.BlockTag
All known Subclasses: jsx3.vector.Tag, jsx3.vector.Canvas,
BlockTag | public class BlockTag extends jsx3.html.Tag (Code) | | Represents an HTML element that occupies a rectangle of the screen.
This class is available only when the Charting add-in is enabled.
author: Joe Walker [joe at getahead dot org] author: DRAPGEN - Dwr Reverse Ajax Proxy GENerator |
Method Summary | |
public void | getBackgroundColor(org.directwebremoting.proxy.Callback<String> callback) Returns the bgcolor field. | public void | getDimensions(org.directwebremoting.proxy.Callback<Object[]> callback) | public void | getHeight(org.directwebremoting.proxy.Callback<Integer> callback) Returns the height field. | public void | getLeft(org.directwebremoting.proxy.Callback<Integer> callback) Returns the left field. | public void | getMargin(org.directwebremoting.proxy.Callback<String> callback) Returns the margin field, as set by setMargin(). | public void | getMarginDimensions(org.directwebremoting.proxy.Callback<Object[]> callback) | public void | getPadding(org.directwebremoting.proxy.Callback<String> callback) Returns the padding field, as set by setPadding(). | public void | getPaddingDimensions(org.directwebremoting.proxy.Callback<Object[]> callback) | public void | getPosition(org.directwebremoting.proxy.Callback<String> callback) Returns the position field. | public void | getTop(org.directwebremoting.proxy.Callback<Integer> callback) Returns the top field. | public void | getWidth(org.directwebremoting.proxy.Callback<Integer> callback) Returns the width field. | public void | getZIndex(org.directwebremoting.proxy.Callback<Integer> callback) Returns the zIndex field. | public void | setBackgroundColor(String bgcolor) Sets the bgcolor field. | public void | setDimensions(int left, int top, int width, int height) Sets all four dimensions at once. | public void | setDimensions(Object[] left, int top, int width, int height) Sets all four dimensions at once. | public void | setHeight(int height) Sets the height field. | public void | setLeft(int left) Sets the left field. | public void | setMargin(String margin) Sets the margin field, can be a single value or four values separated by space that correspond to top, right, bottom, and left. | public void | setPadding(String padding) Sets the padding field, can be a single value or four values separated by space that correspond to top, right, bottom, and left. | public void | setPosition(String position) Sets the position field, can be 'absolute' or 'relative'. | public void | setTop(int top) Sets the top field. | public void | setWidth(int width) Sets the width field. | public void | setZIndex(int zIndex) Sets the zIndex field. |
BlockTag | public BlockTag(Context context, String extension, ScriptProxy scriptProxy)(Code) | | All reverse ajax proxies need context to work from
Parameters: scriptProxy - The place we are writing scripts to Parameters: context - The script that got us to where we are now |
BlockTag | public BlockTag(String strTagNS, String strTagName, int left, int top, int width, int height)(Code) | | The instance initializer.
Parameters: strTagNS - Parameters: strTagName - Parameters: left - left position (in pixels) of the object relative to its parent container Parameters: top - top position (in pixels) of the object relative to its parent container Parameters: width - width (in pixels) of the object Parameters: height - height (in pixels) of the object |
setBackgroundColor | public void setBackgroundColor(String bgcolor)(Code) | | Sets the bgcolor field.
Parameters: bgcolor - the new value for bgcolor |
setDimensions | public void setDimensions(int left, int top, int width, int height)(Code) | | Sets all four dimensions at once.
Parameters: left - the new left value or an array containing all four new values Parameters: top - the new top value Parameters: width - the new width value Parameters: height - the new height value |
setDimensions | public void setDimensions(Object[] left, int top, int width, int height)(Code) | | Sets all four dimensions at once.
Parameters: left - the new left value or an array containing all four new values Parameters: top - the new top value Parameters: width - the new width value Parameters: height - the new height value |
setHeight | public void setHeight(int height)(Code) | | Sets the height field.
Parameters: height - the new value for height |
setLeft | public void setLeft(int left)(Code) | | Sets the left field.
Parameters: left - the new value for left |
setMargin | public void setMargin(String margin)(Code) | | Sets the margin field, can be a single value or four values separated by space that correspond to top, right, bottom, and left.
Parameters: margin - the new value for margin |
setPadding | public void setPadding(String padding)(Code) | | Sets the padding field, can be a single value or four values separated by space that correspond to top, right, bottom, and left.
Parameters: padding - the new value for padding |
setPosition | public void setPosition(String position)(Code) | | Sets the position field, can be 'absolute' or 'relative'.
Parameters: position - the new value for position |
setTop | public void setTop(int top)(Code) | | Sets the top field.
Parameters: top - the new value for top |
setWidth | public void setWidth(int width)(Code) | | Sets the width field.
Parameters: width - the new value for width |
setZIndex | public void setZIndex(int zIndex)(Code) | | Sets the zIndex field.
Parameters: zIndex - the new value for zIndex |
Methods inherited from jsx3.lang.Object | public void ignoreReturn()(Code)(Java Doc)
|
|
|