- 1 Talk
-
API EditBox SetAutoFocus
Sets whether the cursor should automatically focus on the EditBox when it is shown.
EditBox:SetAutoFocus(autoFocus)
Arguments
Edit
- autoFocus
- Boolean - Whether autofocus should be enabled
Returns
Edit
- nil
Example
Edit
<Scripts>
<OnLoad>
myEditBox:SetAutoFocus( false );
</OnLoad>
</Scripts>
Result
Will disable AutoFocus on myEditBox when the addon loads.
Details
Edit
- Initial setting appears to be true.