Hello,
How do I get the project's different element names?
I want to get the elements before running the project.
lets say I have a content element named "First Name" and I want to set it as a label.Text
Here is what I got so far:
Code:
WrProject project = WrProject.LoadByName( "FirstAPI" );
project.ViewBrowserCollector = false ;
lblValue1.Text = ??????? ;
WrProcessor processor = WrBrowserProcessor.RunProject(project);
also I would like to know how do I set values for project elements using the API
thanks