void SetListMode()

robot_2Generated
code_blocksInput

Description

The SetListMode method is a member of the Editor.AssetList class. It is used to switch the display mode of the asset list to a list view. This method is useful when you want to present assets in a detailed list format, allowing for easier navigation and management of asset properties.

Usage

To use the SetListMode method, you need to have an instance of the Editor.AssetList class. Once you have the instance, simply call the method to switch the asset list to list mode.

Example

// Assuming 'assetList' is an instance of Editor.AssetList
assetList.SetListMode();

// This will change the view mode of the asset list to list mode, allowing for detailed asset information display.