Class: Raylib::GuiStyleProp
- Inherits:
-
FFI::Struct
- Object
- FFI::Struct
- Raylib::GuiStyleProp
- Defined in:
- lib/raygui_main.rb
Overview
NOTE: Used when exporting style as code for convenience
Instance Method Summary collapse
- #controlId ⇒ Object
- #controlId=(v) ⇒ Object
- #propertyId ⇒ Object
- #propertyId=(v) ⇒ Object
- #propertyValue ⇒ Object
- #propertyValue=(v) ⇒ Object
Instance Method Details
#controlId ⇒ Object
449 |
# File 'lib/raygui_main.rb', line 449 def controlId = self[:controlId] |
#controlId=(v) ⇒ Object
450 |
# File 'lib/raygui_main.rb', line 450 def controlId=(v) self[:controlId] = v end |
#propertyId ⇒ Object
451 |
# File 'lib/raygui_main.rb', line 451 def propertyId = self[:propertyId] |
#propertyId=(v) ⇒ Object
452 |
# File 'lib/raygui_main.rb', line 452 def propertyId=(v) self[:propertyId] = v end |
#propertyValue ⇒ Object
453 |
# File 'lib/raygui_main.rb', line 453 def propertyValue = self[:propertyValue] |
#propertyValue=(v) ⇒ Object
454 |
# File 'lib/raygui_main.rb', line 454 def propertyValue=(v) self[:propertyValue] = v end |