readonly int Region.TintRed
Gets the Red setting for the region's current tint.
This property is read-only; to change it, use the Region.Tint command.
NOTE: If the Region.TintEnabled property is false, then
this value is meaningless.
Example:
if (region[4].TintEnabled) {
Display("Region 4 is tinted RGB (%d,%d,%d) Saturation %d.",
region[4].TintRed, region[4].TintGreen,
region[4].TintBlue, region[4].TintSaturation);
}
will display a message with the region's tints.
See Also: Region.Tint, Region.TintEnabled,
Region.TintBlue, Region.TintGreen
|