ITransformProvider.CanMove 屬性
定義
重要
部分資訊涉及發行前產品,在發行之前可能會有大幅修改。 Microsoft 對此處提供的資訊,不做任何明確或隱含的瑕疵擔保。
取得的值指定是否可移動控制項。
public:
property bool CanMove { bool get(); };
public bool CanMove { get; }
member this.CanMove : bool
Public ReadOnly Property CanMove As Boolean
屬性值
如果項目可以移動,則為 true
;否則為 false
。
範例
下列範例示範可移動之控制項的這個方法實作。
/// <summary>
/// Specifies whether moving is supported.
/// </summary>
bool ITransformProvider.CanMove
{
get
{
return true;
}
}
''' <summary>
''' Specifies whether moving is supported.
''' </summary>
Private ReadOnly Property CanMove() As Boolean Implements ITransformProvider.CanMove
Get
Return True
End Get
End Property