|
|
|
|
|
AllowActionBarHiding (Property) In french: AutoriseMasquageActionBar
Operating mode for automatically hiding the Action Bar: - By default, the Action Bar is always visible.
- The "Automatically hide the Action Bar when scrolling" option ("Details" tab of the Action Bar description window) hides the Action Bar when a window, internal window, supercontrol, Table or Looper control is scrolled.
In some cases, you may want not to hide the Action Bar even if this option is enabled. This can be defined with the AllowActionBarHiding property.
The AllowActionBarHiding property automatically hides the Action Bar. // Force the Action Bar to remain visible ACTB_MyActionBar.Visible = True IW_Customer.AllowActionBarHiding = False
Syntax
Determining if the Action Bar hides automatically when the user swipes up or down to scroll the screen Hide the details
<Result> = <Element to use>.AllowActionBarHiding
<Result>: Boolean - True if the Action Bar hides automatically when the user scrolls the element,
- False otherwise.
<Element to use>: Control name or window name Name of the element to be scrolled: window, internal window, supercontrol, table or looper.
Changing the operating mode for automatically hiding the Action Bar Hide the details
<Element to use>.AllowActionBarHiding = <Automatic hiding>
<Element to use>: Control name or window name Name of the element to be scrolled: window, internal window, supercontrol, table or looper. <Automatic hiding>: Boolean - True if the Action Bar hides automatically when the user scrolls the element,
- False otherwise.
Remarks - This property has no effect if "Automatically hide the Action Bar when scrolling" is not enabled in the "Details" tab of the Action Bar control description window.
- The Action Bar control can be made visible or invisible with the Visible property.
- If the control or window does not allow scrolling up or down, the AllowActionBarHiding property has no effect.
This page is also available for…
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|