Hi, Let me make a confession first , I am newbie to C# and .Net :)
I have a set of RichTextBoxs , content in the box can be applied different colors at substring level, like this , this.selectedField.richTextBox1.SelectionColor = Color.FromArgb(253, Color.Black);
when I try to read the Alpha value for that part of string , using (Color clr = this.richTextBox1.SelectionColor;) clr.A always gives 255 , full opacity.
Is it anyway possible to assign and retirve the same value I assign ?
Thanks in Advance.