Public classes


Scripts/

   SDController
   SegmentDisplay
   SegmentDisplayImage
   SegmentDisplaySprite
   SingleDigit
   SingleSegment

Scripts/Commands/

      AddTextCommand
      CallbackCommand
      ClearCommand
      FillCommand
      PauseCommand
      ScrollTextCommand
      SetTextCommand


Introduction page

FillCommand
Derived from AbsSDCommand


Command to clear the display. Clearing may be instant or happen with some effect like scrolling all the content away from display, or clearing display character by character.


Enums

public enum MethodsList of methods how display can be cleared.

Constructors

public FillCommand ()Creates new fill command that will instantly fill the display.
public FillCommand (int startIndex, int count)Creates new fill command that will instantly fill part of display.
public FillCommand (Methods method, float charactersPerSecond)Creates new fill with specified effect.

Enums

public enum Methods

List of methods how display can be cleared.

ItemsDigitByDigitFromLeftFill display digit by digit starting from left.
 DigitByDigitFromRightFill display digit by digit starting from right.


Constructors

public FillCommand ()

Creates new fill command that will instantly fill the display.


public FillCommand (int startIndex, int count)

Creates new fill command that will instantly fill part of display.

ParametersstartIndexIndex of first digit to fill.
 countHow many digits to fill.


public FillCommand (Methods method, float charactersPerSecond)

Creates new fill with specified effect.

ParametersmethodMethod how display is filled, one of the values from enum Methods
 charactersPerSecondSpeed how fast display is cleared, in characters per second