Object Hierarchy | Related C++ Class: Layout
Layout
v4.0
The Layout object represents an instance of a screen layout in Softimage and gives access to the views attached to that layout. Layout is read-only and cannot be edited or created with the SDK.
CreateView | CreateView2 | CreateViewFromDefinitionFile | CreateViewFromDefinitionFile2 |
FindView | FindView2 | IsClassOf | IsEqualTo |
// Display the name of the active layout var desktop = Application.Desktop; var layout = desktop.ActiveLayout; Application.LogMessage( layout.Name ); |