Set color of checkbox text via script?
Set color of checkbox text via script?
Is there anyway to set the text color of a checkbox via script? I can't find anything in the documentation
Re: Set color of checkbox text via script?
If you have a checkbox named CheckBox perhaps these examples of lines would help you?
CheckBox.FontColor = System.Drawing.Color.Cornsilk;
CheckBox.FontColor = System.Drawing.Color.FromArgb(100,50,45); // Red, Green,Blue
CheckBox.FontColor = System.Drawing.Color.Cornsilk;
CheckBox.FontColor = System.Drawing.Color.FromArgb(100,50,45); // Red, Green,Blue