Report. Moveable-Eigenschaft (Access)Report.Moveable property (Access)
Gibt einen booleschen Wert zurück, der angibt, ob der angegebene Bericht vom Benutzer verschoben werden kann, oder legt diesen fest. True , wenn es verschoben werden kann.Returns or sets a Boolean indicating whether the specified report can be moved by the user; True if it can be moved. Lese-/Schreibzugriff.Read/write.
SyntaxSyntax
Ausdruck. Verschiebbarexpression.Moveable
Ausdruck Eine Variable, die ein Report -Objekt darstellt.expression A variable that represents a Report object.
HinweiseRemarks
Mit der Move-Methode können Sie ein Formular oder einen Bericht unabhängig vom Wert der Moveable-Eigenschaft programmgesteuert verschieben.You can use the Move method to programmatically move a form or report regardless of the value of the Moveable property.
BeispielExample
Das folgende Beispiel bestimmt, ob das erste Formular im aktuellen Projekt verschoben werden kann.The following example determines whether or not the first form in the current project can be moved.
If Forms(0).Moveable Then
MsgBox "You may move the form."
Else
MsgBox "The form cannot be moved."
End If
Support und FeedbackSupport and feedback
Haben Sie Fragen oder Feedback zu Office VBA oder zu dieser Dokumentation?Have questions or feedback about Office VBA or this documentation? Unter Office VBA-Support und Feedback finden Sie Hilfestellung zu den Möglichkeiten, wie Sie Support erhalten und Feedback abgeben können.Please see Office VBA support and feedback for guidance about the ways you can receive support and provide feedback.