Equinox Online Help - Language Reference - A to Z

Home

IsPageScroll

Applies to
SyntaxIsPageScroll (GroupNameExpression)
Action[Function] Finds out whether record selector scrolling is set for a particular group.
ScopeOnly usable in form methods.
Notes

This function establishes the status of page scrolling on the group named GroupNameExpression. If it returns False the record selector is locked in one position and the up and down arrows or mouse clicks on adjacent selector positions will cause the records to scroll around the record selector. If it returns True the record selector will follow the mouse clicks on the selector bar and the up/down arrows

CategoryForms
See Also ChangeEditLine, ChangeGroup, ChangeObject, ChangePage, CurrentEventName, CurrentGroupName, CurrentObjectName, CurrentPageName, DefaultHelp, EnableGroup, EnablePage, Get, NextObjectName, Set, SetDefaultHelp, SetEquinoxTitle, SetPageScroll, SetPageTitle, ShowPage
Example

The following method fragment forces page scroll off.

| Place in Not Busy event
if IsPageScroll("Items") then
SetPageScroll "Items", false
end if