v11.0 (2013)
Sets the Checkerboard mode of the Texture Editor view(s).
SetCheckerboardMode( Checkerboard, [TextureEditor] ); |
Parameter | Type | Description |
---|---|---|
Checkerboard | Boolean | True to enable the checkerboard mode of the Texture Editor view(s), false otherwise. |
TextureEditor | Texture Editor View object. | The Texture Editor view to update the checkerboard setting.
Default Value: If not specified, the change is applied to all Texture Editor views. |
# Get the Texture Editor view object oView = Application.Desktop.ActiveLayout.CreateView2( "Texture Editor", "MyTextureEditor" ); # Turn on the checkerboard mode of the view Application.SetCheckerboardMode( True, oView ); |