Public classes

Controller
DisplayModel
DotMatrix
TextToContent

Commands/

   AbsCmd
   AbsCmdPosition
   AbsCmdSpeed
   CallbackCommand
   ClearCommand
   ContentCommand
   PauseCommand
   TextCommand

Displays/

   Display
   Display_3D
   Display_Sprite
   Display_UI


Introduction page

ClearCommand
Derived from AbsCmdSpeed


Command to clear or fill the display. Clearing may be instant or happen with some effect like scrolling all the content away from display, or clearing/filling display row by row or columns by column.


Enums

public enum MethodsList of methods how display can be cleared or filled.

Constructors

public ClearCommand ()Creates new clear command.
public ClearCommand (bool fill)Creates new clear or fill command.
public ClearCommand (int targetState)Creates new clear or fill command.

Properties

public Methods MethodGets or sets the method how display is cleared or filled, one of the values from enum Methods.

Enums

public enum Methods

List of methods how display can be cleared or filled. Default is instant.

ItemsInstantInstant on next update.
 MoveLeftMove everything left until display is clear.
 MoveRightMove everything right until display is clear.
 MoveUpMove everything up until display is clear.
 MoveDownMove everything down until display is clear.
 ColumnByColumnFromLeftClear display column by column starting from left.
 ColumnByColumnFromRightClear display column by column starting from right.
 RowByRowFromTopClear display row by row starting from top.
 RowByRowFromBottomClear display row by row starting from bottom.


Constructors

public ClearCommand ()

Creates new clear command.


public ClearCommand (bool fill)

Creates new clear or fill command.

This constructor is available mostly for backward compatibility for old versions. If parameter is false, this is same as ClearCommand() and also same as ClearCommand(0) If parameter is true, this is same as ClearCommand(1)

ParametersfillIf true, display is filled instead of cleared.


public ClearCommand (int targetState)

Creates new clear or fill command.

ParameterstargetStateNew wanted state (color/rotation) of all dots.


Properties

public Methods Method

Gets or sets the method how display is cleared or filled, one of the values from enum Methods.

ValueMethod to use.