ITransformProvider.CanMove Proprietà

Definizione

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

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

Valore della proprietà

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

Esempio

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

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

Si applica a

Vedi anche