How i can change the text " border = none " in runtime ?
Like this:
if(text1.Text == null) text5.border = none ;
Thank you
How i can change the text " border = none " in runtime ?
How i can change the text " border = none " in runtime ?
Hello,
You can use following code in GetValueEvent of text component:
Thank you.
You can use following code in GetValueEvent of text component:
Code: Select all
if (string.IsNullOrEmpty(e.Value))
{
StiText comp = sender as StiText;
comp.Border.Side = StiBorderSides.None;
}
How i can change the text " border = none " in runtime ?
:biggrin:
thank you very much
thank you very much
How i can change the text " border = none " in runtime ?
Always ready to help you.