bool SupportsMultiEdit { get; set; }

book_4_sparkGenerated
code_blocksInput

Description

The SupportsMultiEdit property of the RotationControlWidget class indicates whether the widget supports multi-editing functionality. Multi-editing allows users to modify multiple instances of a control simultaneously, which can be useful in scenarios where consistent changes need to be applied across several objects.

Usage

To determine if the RotationControlWidget supports multi-editing, access the SupportsMultiEdit property. This property is virtual, allowing derived classes to override its behavior if necessary.

Example usage:

var rotationWidget = new RotationControlWidget();
if (rotationWidget.SupportsMultiEdit)
{
    // Implement logic for multi-editing
}
else
{
    // Handle single-edit scenario
}

Example

var rotationWidget = new RotationControlWidget();
if (rotationWidget.SupportsMultiEdit)
{
    // Implement logic for multi-editing
}
else
{
    // Handle single-edit scenario
}