Share via


ITransformProvider.CanMove 屬性

定義

取得的值指定是否可移動控制項。

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

適用於

另請參閱