ITransformProvider.CanRotate Proprietà

Definizione

Ottiene un valore che specifica se il controllo può essere ruotato.

public:
 property bool CanRotate { bool get(); };
public bool CanRotate { get; }
member this.CanRotate : bool
Public ReadOnly Property CanRotate As Boolean

Valore della proprietà

true se è possibile ruotare l'elemento. In caso contrario, false.

Esempio

Nell'esempio seguente viene illustrata un'implementazione di questo metodo per un controllo che non può essere ruotato.

/// <summary>
/// Specifies whether rotating is supported.
/// </summary>
bool ITransformProvider.CanRotate
{
    get
    {
        return false;
    }
}
''' <summary>
''' Specifies whether rotating is supported.
''' </summary>
Private ReadOnly Property CanRotate() As Boolean Implements ITransformProvider.CanRotate
    Get
        Return False
    End Get
End Property

Si applica a

Vedi anche