Represents a{1,4}, a* and a+ in the CSS specification. A value is repeated x times.
Public Member Functions | |
Repeated (Spec.Value toRepeat) | |
Same as a*. More... | |
Repeated (Spec.Value toRepeat, int min) | |
Usually used for a+, where min is 1. More... | |
Repeated (Spec.Value toRepeat, int min, bool comma) | |
Usually used for a+, where min is 1. More... | |
Repeated (Spec.Value toRepeat, int min, int max) | |
Used for a{min,max}. More... | |
override bool | OnReadValue (Style styleBlock, Css.Value value, int start, out int size) |
Public Attributes | |
bool | CommaSpacer |
The host value spacer. Either , or ' ' More... | |
Spec.Value | ToRepeat |
The value being repeated. More... | |
int | Minimum |
Min repetition times. More... | |
int | Maximum =-1 |
Max repetition times. -1 is unlimited. More... | |
|
inline |
Same as a*.
|
inline |
Usually used for a+, where min is 1.
|
inline |
Usually used for a+, where min is 1.
|
inline |
Used for a{min,max}.
|
inlinevirtual |
Reimplemented from Css.Spec.Value.
bool Css.Spec.Repeated.CommaSpacer |
The host value spacer. Either , or ' '
int Css.Spec.Repeated.Maximum =-1 |
Max repetition times. -1 is unlimited.
int Css.Spec.Repeated.Minimum |
Min repetition times.
Spec.Value Css.Spec.Repeated.ToRepeat |
The value being repeated.