Collection of styles to be applied to the control
Member of Control (PRIM_CTRL)
Data Type - Collection of PRIM_VS.Style - Style used to define foreground and background appearance
The Styles property allows for one or more Styles to be applied to the control. Styles allows for more complex programmatic appearance changes to be coded. Rather than relying on the declarative single Style property, the developer is free to add as many Style layers as required. Setting the Style property will remove all existing Styles.
Iterating through a collection of labels, highlighting those that contain the search value.
For each(#Label) in(#Labels) If (#Label.Contains(#Search)) #Com_owner.Styles.Add(#Highlight) Else #Com_owner.Styles.Remove(#Highlight) Endif Endfor
Febuary 18 V14SP2