Can you get a page's properties from the PagesFacade?
If I have a PagesFacade() can I get individual properties (pageid, url, title) for a contained page? If so, do I get it directly from the PagesFacade(), or do I loop over a list and ask for each page from some other mechanism?
Hi Dan Sorensen,
You need to get a specific page first, probably like this:
var page = App.WorkWith().Pages().Where(p => p.Title == "Title").Get().First();
Then you can retrieve the different properties in page.