Page 1 of 1

how can i set the page's text.visable ?

Posted: Wed Jan 20, 2010 8:41 pm
by lampson
how can i set the page's text.visable in C# code?
thanks for you help

how can i set the page's text.visable ?

Posted: Thu Jan 21, 2010 12:17 am
by Jan
Hello,

Sorry text component does not have visable property. Did you mean Enabled property?

Thank you.

how can i set the page's text.visable ?

Posted: Mon Jan 25, 2010 6:05 pm
by lampson
Thank you my friends:
Can i write the following expression in Text property:

{Text28.Printable = Condition)

Thank you.

how can i set the page's text.visable ?

Posted: Tue Jan 26, 2010 6:57 am
by Edward
Hi

Printable property will allow you to hide component when the page is printed. In preview window component with Printable property set in true will be visible.

You can apply the code in BeforePrint event:

Text28.Printable = condition;

Thank you.

how can i set the page's text.visable ?

Posted: Wed Jan 27, 2010 7:02 pm
by lampson
thank you very much ....:biggrin:

how can i set the page's text.visable ?

Posted: Thu Jan 28, 2010 4:26 am
by Edward
Hi

You are welcome :)

Thank you.