Widget API: EditBox:SetAutoFocus

From AddOn Studio
Revision as of 14:25, 27 June 2007 by WoWWiki>Ravas (Updated to match the current API boilerplate.)
Jump to navigation Jump to search

Widget API ← EditBox < SetAutoFocus


Sets whether the cursor should automatically focus on the EditBox when it is shown.

EditBox:SetAutoFocus(autoFocus)


Arguments

autoFocus
Boolean - Whether autofocus should be enabled


Returns

nil


Example

<Scripts>
    <OnLoad>
        myEditBox:SetAutoFocus( false );
    </OnLoad>
</Scripts>

Result

Will disable AutoFocus on myEditBox when the addon loads.


Details

Initial setting appears to be true.