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
470 |
# File 'lib/raygui_main.rb', line 470 def controlId = self[:controlId] |
#controlId=(v) ⇒ Object
471 |
# File 'lib/raygui_main.rb', line 471 def controlId=(v) self[:controlId] = v end |
#propertyId ⇒ Object
472 |
# File 'lib/raygui_main.rb', line 472 def propertyId = self[:propertyId] |
#propertyId=(v) ⇒ Object
473 |
# File 'lib/raygui_main.rb', line 473 def propertyId=(v) self[:propertyId] = v end |
#propertyValue ⇒ Object
474 |
# File 'lib/raygui_main.rb', line 474 def propertyValue = self[:propertyValue] |
#propertyValue=(v) ⇒ Object
475 |
# File 'lib/raygui_main.rb', line 475 def propertyValue=(v) self[:propertyValue] = v end |