Description
The SupportsMultiEdit
property of the TagSetControlWidget
class indicates whether the widget supports editing multiple tags simultaneously. This property is useful in scenarios where batch editing of tags is required, allowing for more efficient workflows within the editor environment.
Usage
To determine if the TagSetControlWidget
supports multi-edit functionality, you can access the SupportsMultiEdit
property. This property is virtual, allowing derived classes to override its behavior if necessary.
Example usage:
var tagSetControlWidget = new TagSetControlWidget();
if (tagSetControlWidget.SupportsMultiEdit)
{
// Perform operations that require multi-edit support
}
else
{
// Handle the case where multi-edit is not supported
}
Example
var tagSetControlWidget = new TagSetControlWidget();
if (tagSetControlWidget.SupportsMultiEdit)
{
// Perform operations that require multi-edit support
}
else
{
// Handle the case where multi-edit is not supported
}