Class: Sketchup::OptionsProviderObserver Abstract
Relationships | |
Inherits: | Object |
Overview
To implement this observer, create a Ruby class of this type, override the desired methods, and add an instance of the observer to the objects of interests.
This observer interface is implemented to react to operations provider events. What this means is that you can watch as the user changes SketchUp options and react to them. The following Sketchup::OptionsProviders
are defined in the API:
-
"UnitsOptions"
-
"PrintOptions"
-
"PageOptions"
-
"SlideshowOptions"
-
"NamedOptions"
Each of these has a list of specific options that the user can set. See the OptionsManager
and OptionsProvider
classes for more details.
Instance Method Summary
-
#onOptionsProviderChanged(provider, name) ⇒ nil
The #onOptionsProviderChanged method is invoked when a property of an
OptionsProvider
changes.
Instance Method Details
#onOptionsProviderChanged(provider, name) ⇒ nil
The #onOptionsProviderChanged
method is invoked when a property of an OptionsProvider
changes.