epiCode Active Member Licensed User Oct 4, 2023 #1 I am modifying b4xpages toolbar title using B4X: B4XPages.SetTitle(Me,"Some Title") Is there a simple way to access title of current B4Xpage since there is no B4xpages.GetTitle?
I am modifying b4xpages toolbar title using B4X: B4XPages.SetTitle(Me,"Some Title") Is there a simple way to access title of current B4Xpage since there is no B4xpages.GetTitle?
epiCode Active Member Licensed User Oct 4, 2023 #2 Found a solution: B4XPages.GetNativeParent(Me).Title Upvote 0 Solution
Mariano Ismael Castro Active Member Licensed User Oct 5, 2023 #3 This works too B4X: Log(B4XPages.GetManager.FindPIFromB4XPage(Me).Title) Log(B4XPages.GetManager.GetTopPage.Title) Upvote 0
This works too B4X: Log(B4XPages.GetManager.FindPIFromB4XPage(Me).Title) Log(B4XPages.GetManager.GetTopPage.Title)