General XMetaL Discussion
XMetaL Community Forum › General XMetaL Discussion › Tile Vertically, Tile Horizontally
-
jrob61 December 10, 2013 at 6:14 pm
Tile Vertically, Tile Horizontally
December 10, 2013 at 6:14 pmParticipants 0Replies 1Last Activity 9 years, 2 months agoXmetaL Author Essential Version 8.0.0.038.
Question – Is there a way to programmatically open a document in a new Horizontal/Vertical tab group? we are wanting to tile all open documents for the user upon their request from a form button. In Essential 5.5 and prior, we programmatically tiled these documents for them in our vb.net code using code below. However, it's are understanding there are no APIs available for these tiling actions?
'tile the windows
cmdMenu = gXMApp.CommandBars.item(“Menu bar”)
cmdPopup = cmdMenu.Controls.item(“Window”)
For j = cmdPopup.Controls.Count To 1 Step -1
If cmdPopup.Controls.Item(j).Caption.ToString.ToUpper = “TILE &VERTICALLY” Then
cmdPopup.Controls.Item(j).Execute()
Exit For
End If
NextDerek Read December 10, 2013 at 7:17 pm
Reply to: Tile Vertically, Tile Horizontally
December 10, 2013 at 7:17 pmThat is correct. APIs for this have not been implemented for the new UI in 8.0.
I will put in a feature request.
-
AuthorPosts
- You must be logged in to reply to this topic.