B Oprit

B Oprit

  • 1.2k
  • 421
  • 3.6k

Make Public void for all Editor

Dec 15 2019 8:54 AM
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)