SegmentedDisplayText Property

Gets or sets the text displayed by SegmentedDisplay.

Definition

Namespace: BeeMobile.SegmentedDisplay
Assembly: BeeMobile.SegmentedDisplay.AVA (in BeeMobile.SegmentedDisplay.AVA.dll) Version: 11.0.0.2+315bba37e2b03f6d3a984dc7af81610a1fb5ada7
C#
public string Text { get; set; }

Property Value

String

Remarks

Currently these characters are supported:

  1. digits from 0 to 9
  2. space
  3. colon
  4. negative number sign (based on current cultural settings of UIThread)
  5. decimal number separator (based on current cultural settings of UIThread)
All characters except of digits will be referred to as "special characters".

If you assign any other characters into this property, they will be completely ignored. Control does not check, if the value assigned to this property can be actually converted to a decimal number. Therefore, you can assign multiple occurences of special characters into any position within Text property. Thus you can implement interesting features, such as

  • clock "HH:mm" even with blinking colon ":" character
  • error message in a format: "-------"
  • number range e.g., "3-9"

See Also