I’m trying to create a new window in one specific screen, using the OpenFullScreenWindow command from the MultiWindowCommand:
MultiWindowCommandData multiWindowData = new MultiWindowCommandData()
{
MultiWindowCommand = MultiWindowCommand.OpenFullScreenWindow,
Screen = screen.FQID,
View = view.FQID,
};
It returns an exception: "MultiWindowCommand.OpenFullScreenWindow: View, Screen and Window must be filled. I understand it’s missing the window FQID, but there isn’t an existing window to associate.
Is there a way to create a new window or am I missing something?