How to change a font of text object of CR in runtime?
actually im passing value of textBox (win form) to text Object (.rpt) and i want to set up its font style ... for instance i found that it works well for color property i.e.
but this doesnt:
Thanks in advance
actually im passing value of textBox (win form) to text Object (.rpt) and i want to set up its font style ... for instance i found that it works well for color property i.e.
Code:
{...}
txtCR.Color = Color.CadetBlue //works
but this doesnt:
Code:
txtCR.Font = Font.Italic //this throws an intelisense warning "font is read-only property"
Thanks in advance