AbsCmdPosition
Derived from
AbsCmdSpeed
Abstract base class for all commands that have content which need to be positioned on display, such as text.
Enums
public enum HorPositions | List of possible horizontal positions of the content. | public enum Movements | List of possible movement types. | public enum VerPositions | List of possible vertical positions of the content. |
Properties
public HorPositions HorPosition | Set or get the horizontal position of the content. | public Movements Movement | Set or get movement type of the content. | public VerPositions VerPosition | Set or get the vertical position of the content. |
Enums
public enum HorPositions List of possible horizontal positions of the content. Default is center. Items | Center | Content is aligned to center of display. | | Left | Content is aligned to left side of display. | | Right | Content is aligned to right side of display. |
public enum Movements List of possible movement types. Default is none, meaning all content will instantly appear on display. Items | None | Not moving, content is set to its location instantly on next update. | | MoveLeftAndStop | Move from right to left and stop when wanted horizontal position is reached. | | MoveLeftAndPass | Move from right to left and keep moving until content is away from display. Horizontal position have no effect. | | MoveRightAndStop | Move from left to right and stop when wanted horizontal position is reached. | | MoveRightAndPass | Move from left to right and keep moving until content is away from display. Horizontal position have no effect. | | MoveUpAndStop | Move from down to up and stop when wanted vertical position is reached. | | MoveUpAndPass | Move from down to up and keep moving until content is away from display. Vertical position have no effect. | | MoveDownAndStop | Move from up to down and stop when wanted vertical position is reached. | | MoveDownAndPass | Move from up to down and keep moving until content is away from display. Vertical position have no effect. |
public enum VerPositions List of possible vertical positions of the content. Default is middle. Items | Middle | Content is aligned to middle of display. | | Top | Content is aligned to top of display. | | Bottom | Content is aligned to bottom of display. |
Properties
public HorPositions HorPosition Set or get the horizontal position of the content. Value | Wanted horizontal position, one of the values from enum HorPositions. |
public Movements Movement Set or get movement type of the content. Value | Wanted movement type, one of the values from enum Movements. |
public VerPositions VerPosition Set or get the vertical position of the content. Value | Wanted vertical position, one of the values from enum VerPositions. |
|