I have a TJVSegmentedLEDDisplay control (from the JVCL) that I want to use as a timer. Accordingly, it has five places, two for hours, two for the minutes, and a colon between the two numbers (i.e. 12:34). After hours of experimenting and searching, I still cannot figure out how to access each individual digit programmatically. It seems to me that it should be something like:
LEDControl.Digits[Index].Text
…but, obviously, it’s not.
Any thoughts ?
The
TJvCustomSegmentedLEDDigit.Textproperty, which you have tried to access is protected by a mistake I’d say, since then except direct modifying of theTextproperty, which is not much comfortable for this I couldn’t find a way how to change the individual segment values. However, you can workaround this protected access e.g. by an interposer class: