WoWWiki

This wiki contains inaccurate and out-of-date information. Please head over to https://wowpedia.fandom.com for more accurate and up-to-date game information.

READ MORE

WoWWiki
Advertisement

Widget API ← EditBox < GetAltArrowKeyMode


This function returns the value of ignoreArrows attribute of <EditBox> element.

ignoreArrows = editBox:GetAltArrowKeyMode()

Arguments[]

none

Returns[]

ignoreArrows -- 1 if editBox ignores keyboard arrows, and nil if editBox captures them.

Details[]

By default, <EditBox> element reacts on pressing keyboard arrows -- left and right arrows will move input cursor around the text in edit box, while up and down arrows will cycle through EditBox's history (if it is enabled).

However, when ignoreArrows attribute is set to true, <EditBox> will only react on pressing Alt+Arrows and ignore unmodified arrows. In this case event "arrow key pressed" will propagate up the ierarchy of objects until it is captured, most likely by WorldFrame.

See Also[]

Advertisement