Aracılığıyla paylaş


ITransformProvider.CanRotate Özellik

Tanım

Denetimin döndürülip döndürülemeyeceğini belirten bir değer alır.

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

Özellik Değeri

true öğe döndürülebiliyorsa; aksi takdirde false.

Örnekler

Aşağıdaki örnekte, döndürülemeyen bir denetim için bu yöntemin uygulanması gösterilmektedir.

/// <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

Şunlara uygulanır

Ayrıca bkz.