| |
|
| java.lang.Object com.icesoft.faces.context.effects.Effect com.icesoft.faces.context.effects.Move
Move | public class Move extends Effect (Code) | | Move an HTML element to a new position. Moves can be absolute or relative.
Relative moves an element from it current position, absolute moves it from
its begging position. (Here the HTML initially rendered it)
|
Constructor Summary | |
public | Move() | public | Move(int x, int y, String mode) | public | Move(int x, int y) Move an element to a new position. |
Move | public Move(int x, int y, String mode)(Code) | | Move an element to a new position
Parameters: x - or left location Parameters: y - or top location Parameters: mode - can be relative or absolute |
Move | public Move(int x, int y)(Code) | | Move an element to a new position. Mode is relative
Parameters: x - or left location Parameters: y - or top location |
getFunctionName | public String getFunctionName()(Code) | | The javascript function name
|
getMode | public String getMode()(Code) | | Get the mode of the move (absolute or relative)
|
getX | public int getX()(Code) | | Get the X or left end position
|
getY | public int getY()(Code) | | Get the Y or top position
|
hasCode | public int hasCode()(Code) | | |
setMode | public void setMode(String mode)(Code) | | Set the mode (absolute or realitve)
Parameters: mode - |
setX | public void setX(int x)(Code) | | Set the X or left end position
Parameters: x - |
setY | public void setY(int y)(Code) | | Set the Y or top position
Parameters: y - |
|
|
|