Determines the layout of the form view.
NOTE: This property is not yet available thru atb's programming interface. Currently, the only way to use it is at design time using the Style tab of the Property Pages.
Property FormLayout as eFormLayout
atb.FormLayout [=eFormLayout]
Settings
Valid settings for the FormLayout property are:
| Constant | Remarks |
|---|---|
| Simple | Simple uses neither scrolling nor automatically added controls |
| HScroll | HScroll displays a horizontal scrollbar if needed |
| Autoplace | Autoplace places the design-time controls automatically on a scrollable panel |
| Autocontrols | Autocontrols works like Autoplace and adds missing controls automatically |
If you're using any value other than Simple, be sure that the form-view controls of your atb control do have a hWnd property returning their window handle. If you are using User Defined Controls you may add a property to your UserControl like this:
Public Property Get hWnd() As Long
hWnd = UserControl.hWnd
End Property