ITransformProvider.CanRotate 屬性
定義
重要
部分資訊涉及發行前產品,在發行之前可能會有大幅修改。 Microsoft 對此處提供的資訊,不做任何明確或隱含的瑕疵擔保。
取得的值指定是否可旋轉控制項。
public:
property bool CanRotate { bool get(); };
public bool CanRotate { get; }
member this.CanRotate : bool
Public ReadOnly Property CanRotate As Boolean
屬性值
如果項目可以旋轉,則為 true
;否則為 false
。
範例
下列範例顯示無法旋轉之控制項的這個方法實作。
/// <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