Description
TPSCColorStrKind type is used for determining of hints' presentation. Parameters: ckDecimal - Color is being converted in the string that is decimal representation of the color. For example clPurple is converted to a string '8388736'. ckHex - Color is being converted in the string that is heximal representation of the color. For example clPurple is converted to a string '$800080'. ckRGBPercents - Color is being converted in the string that represent bright of the each base color (red, green, blue) in percents. For example clPurple is converted to a string 'RGB{50.2%,0,50.2%}'. ckRGBIntPercents - Color is being converted in the string that represent bright of the each base color (red, green, blue) in percents. Percents are rounded to integer values. For example clPurple is converted to a string 'RGB{50%,0,50%}'. ckRGBDecimal - Color is being converted in the string that represent bright of the each base color (red, green, blue) in absolute decimal values from 0 till 255. For example clPurple is converted to a string 'RGB{128,0,128}'. ckRGBHex - Color is being converted in the string that represent bright of the each base color (red, green, blue) in absolute heximal values from 0 till FF. For example clPurple is converted to a string 'RGB{80,0,80}'. ckHexTriple - Color is being converted in the string that represent bright of the each base color (red, green, blue) in absolute heximal values from 0 till FF using prefix 'Hex'. For example clPurple is converted to a string 'Hex={80,0,80}'.