Difference between revisions of "Lua:createTrackBar"
Jump to navigation
Jump to search
(Initial page creation.) |
m (Added related function template.) |
||
| Line 21: | Line 21: | ||
===Examples=== | ===Examples=== | ||
| − | < | + | <syntaxhighlight lang="lua" line> |
local form = createForm() | local form = createForm() | ||
local track = createTrackBar(form) | local track = createTrackBar(form) | ||
| Line 27: | Line 27: | ||
track.Max = 100 | track.Max = 100 | ||
track.Position = 25 | track.Position = 25 | ||
| − | </ | + | </syntaxhighlight> |
{{LuaSeeAlso}} | {{LuaSeeAlso}} | ||
| + | |||
| + | {{Creation}} | ||
Latest revision as of 23:49, 26 June 2026
Creates a TrackBar (slider) control.
The new TrackBar belongs to the supplied owner. The owner must inherit from WinControl.
Function Parameters[edit]
| Parameter | Type | Description |
|---|---|---|
| owner | WinControl | The parent/owner of the new TrackBar. |
Returns[edit]
TrackBar — The newly created TrackBar object.
Examples[edit]
1 local form = createForm()
2 local track = createTrackBar(form)
3 track.Min = 0
4 track.Max = 100
5 track.Position = 25