mirror of
				https://github.com/RGBCube/serenity
				synced 2025-10-31 07:52:45 +00:00 
			
		
		
		
	
		
			
				
	
	
		
			24 lines
		
	
	
	
		
			265 B
		
	
	
	
		
			Markdown
		
	
	
	
	
	
			
		
		
	
	
			24 lines
		
	
	
	
		
			265 B
		
	
	
	
		
			Markdown
		
	
	
	
	
	
| ## Name
 | |
| 
 | |
| GML Scrollbar Widget
 | |
| 
 | |
| ## Description
 | |
| 
 | |
| Defines a GUI scrollbar widget.
 | |
| 
 | |
| ## Synopsis
 | |
| 
 | |
| `@GUI::Scrollbar`
 | |
| 
 | |
| ## Examples
 | |
| 
 | |
| ```gml
 | |
| @GUI::Scrollbar {
 | |
|     name: "enabled_scrollbar"
 | |
|     fixed_height: 16
 | |
|     fixed_width: -1
 | |
|     min: 0
 | |
|     max: 100
 | |
|     value: 50
 | |
| }
 | |
| ```
 | 
