RSS

Четверг, 18.04.2024, 15:33
Главная » WoW API » Событий API Виджетов »

OnScrollRangeChanged

[ править ]
Run when the scroll frame's scroll position is changed.
[клоны]
Run when the scroll frame's scroll position is changed. Only run when the scroll position changes due to changes in the scroll child frame's dimensions, not when :SetHorizontalScroll() or :SetVerticalScroll() is called.


Signature:
Code
OnScrollRangeChanged(self, xOffset, yOffset)

Arguments:
  • self - Reference to the widget for which the script was run (scrollframe)
  • xOffset - New horizontal scroll range (in pixels, measured from the leftmost scroll position) (number)
  • yOffset - New vertical scroll range (in pixels, measured from the topmost scroll position) (number)

Examples:
-- Set the min and max values of a scroll bar (Slider) based on the scroll range
scrollFrame:SetScript("OnScrollRangeChanged", function(self, x, y)
verticalScrollBar:SetMinMaxValues(0, y)
end)

Доступна для: ScrollFrame

Также смотрите: Событий API Виджетов
Ссылки: http://wowprogramming.com/docs/scripts/OnScrollRangeChanged