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.
// Display the name of the active layout var desktop = Application.Desktop; var layout = desktop.ActiveLayout; Application.LogMessage( layout.Name ); |