2
Answers

Make Public void for all Editor

B Oprit

B Oprit

5y
504
1
I have a Public void to check if an Editor with the name Zeeboot is empthy else put some text or a space in it
public void MySub()
 
if (string.IsNullOrEmpty(Zeeboot.Text))
{
Zeeboot.Text = "  ";
}
else
{
}
 
 
That works but i have a app for an ipad that has about 50 Editor's in the page.
 
Is there a way to just check all the Editors in the page and when some of them are empty put text in it . For example a space ?
 
 
Answers (2)