Ändern der Größe eines Steuerelements horizontal und vertikal mit dem Formular
The following code sample shows how to resize a control with a form. Es wird die OlkControl-Klasse verwendet, die einige grundlegende Eigenschaften (z. B. HorizontalLayout und VerticalLayout) darstellt, die für Outlook-Formularsteuerelemente gelten. It assumes an existing Outlook text box control, myTextBox, in the form, and uses casting in Visual Basic to allow the text box control to use the properties of OlkControl.
Dim olkCtrl As Outlook.OlkControl
' Let the text box control use the properties of OlkControl
Set olkCtrl = myTextBox
' Enable automatic adjustments of the layout with respect to the rest of the form
olkCtrl.EnableAutoLayout = True
' Allow resizing the text box control horizontally and vertically with the form
olkCtrl.HorizontalLayout = olHorizontalLayoutGrow
olkCtrl.VerticalLayout = olVerticalLayoutGrow
Support und Feedback
Haben Sie Fragen oder Feedback zu Office VBA oder zu dieser Dokumentation? Unter Office VBA-Support und Feedback finden Sie Hilfestellung zu den Möglichkeiten, wie Sie Support erhalten und Feedback abgeben können.