Class: Sketchup::Page
- Defined in:
- lib/sketchup-api-stubs/stubs/Sketchup/Page.rb
Overview
The Page class contains methods to extract information and modify the properties of an individual page.
Note that inside the SketchUp user interface pages are called “Scenes”.
Instance Method Summary collapse
-
#axes ⇒ Object
The axes method returns the drawing axes for the page.
-
#camera ⇒ Object
The camera method retrieves the camera for a particular page.
-
#delay_time ⇒ Object
The delay_time method retrieves the amount of time, in seconds, that a page will be displayed before transition to another page during a tour.
-
#delay_time=(seconds) ⇒ Object
The delay_time= method sets the amount of time, in seconds, that a page will be displayed before transitioning to another page during a tour.
-
#description ⇒ Object
The description method retrieves the description for a page as found in the Scenes manager dialog.
-
#description=(description) ⇒ Object
The description method sets the description for a page as found in the Scenes manager dialog.
-
#get_drawingelement_visibility(element) ⇒ Boolean
The #get_drawingelement_visibility method is used to get the visibility of a drawing element on a particular page.
-
#hidden_entities ⇒ Object
The hidden_entities method retrieves all hidden entities within a page.
-
#include_in_animation=(include) ⇒ Sketchup::Page
The #include_in_animation= method controls whether the page should be included when exporting an animation from the model.
-
#include_in_animation? ⇒ Boolean
The #include_in_animation? method determines whether the page should be included when exporting an animation from the model.
-
#label ⇒ Object
The label method retrieves the label for a page from the page tab.
-
#layers ⇒ Object
The layers method retrieves the non-visible layers associated with a page.
-
#name ⇒ Object
The name method retrieves the name for a page from the page tab.
-
#name=(name) ⇒ Object
The name= method sets the name for a page’s tab.
-
#rendering_options ⇒ Object
The rendering_options method retrieves a RenderingOptions object for the page.
-
#set_drawingelement_visibility(element, visibility) ⇒ Boolean
The #set_drawingelement_visibility method is used to change the visibility of a drawing element on a particular page.
-
#set_visibility(layer, visibility) ⇒ Object
The set_visibility method sets the visibility for a layer on a page.
-
#shadow_info ⇒ Object
The shadow_info method retrieves the ShadowInfo object for the page.
-
#style ⇒ Object
The style method retrieves the style associated with the page.
-
#transition_time ⇒ Object
Get the amount of time that it takes to transition to this page during a slideshow or animation export.
-
#transition_time=(trans_time) ⇒ Object
The transition_time= method is used to set the transition time.
-
#update(flags) ⇒ Object
The update method performs an update on the page properties based on the current view that the user has.
-
#use_axes=(pagesettings) ⇒ Object
The use_axes= method sets the page’s axes property.
-
#use_axes? ⇒ Boolean
The use_axes? method determines whether you are storing the axes property with the page.
-
#use_camera=(setting) ⇒ Object
The use_camera= method sets the page’s camera property.
-
#use_camera? ⇒ Boolean
The use_camera? method determines whether you are storing the camera property with the page.
-
#use_hidden=(setting) ⇒ Object
The use_hidden= method sets the page’s hidden property.
-
#use_hidden? ⇒ Boolean
The use_hidden? method determines whether you are storing the hidden property with the page.
-
#use_hidden_layers=(setting) ⇒ Object
The use_hidden_layers= method sets the page’s hidden layers property.
-
#use_hidden_layers? ⇒ Boolean
The use_hidden_layers? method determines whether you are storing the hidden layers property with the page.
-
#use_rendering_options=(setting) ⇒ Object
The use_rendering_optoins= method sets the page’s display settings property.
-
#use_rendering_options? ⇒ Boolean
The use_rendering_options? method determines whether you are storing the rendering options property with the page.
-
#use_section_planes=(setting) ⇒ Object
The use_section_planes= method sets the page’s section planes property.
-
#use_section_planes? ⇒ Boolean
The use_section_planes? method determines whether you are storing the section planes property with the page.
-
#use_shadow_info=(setting) ⇒ Object
The use_shadow_info= method sets the page’s shadow info property.
-
#use_shadow_info? ⇒ Boolean
The use_shadow_info? method determines whether you are storing the shadow info property with the page.
-
#use_style=(style) ⇒ Object
The use_style= method sets the style to be used by the page.
-
#use_style? ⇒ Boolean
The use_style? method determines whether storing a style with the page.
Methods inherited from Entity
#add_observer, #attribute_dictionaries, #attribute_dictionary, #delete_attribute, #deleted?, #entityID, #get_attribute, #inspect, #model, #parent, #persistent_id, #remove_observer, #set_attribute, #to_s, #typename, #valid?
Instance Method Details
#axes ⇒ Object
The axes method returns the drawing axes for the page.
25 26 |
# File 'lib/sketchup-api-stubs/stubs/Sketchup/Page.rb', line 25 def axes end |
#camera ⇒ Object
The camera method retrieves the camera for a particular page.
40 41 |
# File 'lib/sketchup-api-stubs/stubs/Sketchup/Page.rb', line 40 def camera end |
#delay_time ⇒ Object
The delay_time method retrieves the amount of time, in seconds, that a page will be displayed before transition to another page during a tour.
The default delay time can be modified in the Model Info > Animation panel of the SketchUp User Interface. If this method returns -1, the default delay time is used.
59 60 |
# File 'lib/sketchup-api-stubs/stubs/Sketchup/Page.rb', line 59 def delay_time end |
#delay_time=(seconds) ⇒ Object
The delay_time= method sets the amount of time, in seconds, that a page will be displayed before transitioning to another page during a tour. If you set the delay for a page to be -1, the default delay time will be used.
The default delay time can be modified in the Model Info > Animation panel of the SketchUp User Interface.
81 82 |
# File 'lib/sketchup-api-stubs/stubs/Sketchup/Page.rb', line 81 def delay_time=(seconds) end |
#description ⇒ Object
The description method retrieves the description for a page as found in the Scenes manager dialog.
96 97 |
# File 'lib/sketchup-api-stubs/stubs/Sketchup/Page.rb', line 96 def description end |
#description=(description) ⇒ Object
The description method sets the description for a page as found in the Scenes manager dialog.
114 115 |
# File 'lib/sketchup-api-stubs/stubs/Sketchup/Page.rb', line 114 def description=(description) end |
#get_drawingelement_visibility(element) ⇒ Boolean
The #get_drawingelement_visibility method is used to get the visibility of a drawing element on a particular page.
134 135 |
# File 'lib/sketchup-api-stubs/stubs/Sketchup/Page.rb', line 134 def get_drawingelement_visibility(element) end |
#hidden_entities ⇒ Object
The hidden_entities method retrieves all hidden entities within a page.
149 150 |
# File 'lib/sketchup-api-stubs/stubs/Sketchup/Page.rb', line 149 def hidden_entities end |
#include_in_animation=(include) ⇒ Sketchup::Page
The #include_in_animation= method controls whether the page should be included when exporting an animation from the model.
166 167 |
# File 'lib/sketchup-api-stubs/stubs/Sketchup/Page.rb', line 166 def include_in_animation=(include) end |
#include_in_animation? ⇒ Boolean
The #include_in_animation? method determines whether the page should be included when exporting an animation from the model.
179 180 |
# File 'lib/sketchup-api-stubs/stubs/Sketchup/Page.rb', line 179 def include_in_animation? end |
#label ⇒ Object
The label method retrieves the label for a page from the page tab.
193 194 |
# File 'lib/sketchup-api-stubs/stubs/Sketchup/Page.rb', line 193 def label end |
#layers ⇒ Object
The layers method retrieves the non-visible layers associated with a page.
209 210 |
# File 'lib/sketchup-api-stubs/stubs/Sketchup/Page.rb', line 209 def layers end |
#name ⇒ Object
The name method retrieves the name for a page from the page tab.
223 224 |
# File 'lib/sketchup-api-stubs/stubs/Sketchup/Page.rb', line 223 def name end |
#name=(name) ⇒ Object
The name= method sets the name for a page’s tab.
240 241 |
# File 'lib/sketchup-api-stubs/stubs/Sketchup/Page.rb', line 240 def name=(name) end |
#rendering_options ⇒ Object
The rendering_options method retrieves a RenderingOptions object for the page.
255 256 |
# File 'lib/sketchup-api-stubs/stubs/Sketchup/Page.rb', line 255 def end |
#set_drawingelement_visibility(element, visibility) ⇒ Boolean
The #set_drawingelement_visibility method is used to change the visibility of a drawing element on a particular page. Only drawing elements on the root of the model, as well as nested instances of components, groups, and images are controlled by Page visibility.
279 280 |
# File 'lib/sketchup-api-stubs/stubs/Sketchup/Page.rb', line 279 def set_drawingelement_visibility(element, visibility) end |
#set_visibility(layer, visibility) ⇒ Object
The set_visibility method sets the visibility for a layer on a page.
301 302 |
# File 'lib/sketchup-api-stubs/stubs/Sketchup/Page.rb', line 301 def set_visibility(layer, visibility) end |
#shadow_info ⇒ Object
The shadow_info method retrieves the ShadowInfo object for the page.
316 317 |
# File 'lib/sketchup-api-stubs/stubs/Sketchup/Page.rb', line 316 def shadow_info end |
#style ⇒ Object
The style method retrieves the style associated with the page.
330 331 |
# File 'lib/sketchup-api-stubs/stubs/Sketchup/Page.rb', line 330 def style end |
#transition_time ⇒ Object
Get the amount of time that it takes to transition to this page during a slideshow or animation export. If this value is -1, it means to use the default transition time.
348 349 |
# File 'lib/sketchup-api-stubs/stubs/Sketchup/Page.rb', line 348 def transition_time end |
#transition_time=(trans_time) ⇒ Object
The transition_time= method is used to set the transition time.
365 366 |
# File 'lib/sketchup-api-stubs/stubs/Sketchup/Page.rb', line 365 def transition_time=(trans_time) end |
#update(flags) ⇒ Object
The update method performs an update on the page properties based on the current view that the user has. Which parts of the Page get updated are controlled via an integer whose bits represent which parts to update. You can determine the integer you need to pass by adding these numbers together:
- 1 - Camera Location,
- 2 - Drawing Style,
- 4 - Shadow Settings,
- 8 - Axes Location,
- 16 - Hidden Geometry,
- 32 - Visible Layers,
- 64 - Active Section Planes.
The bit code values are added together to provide the flags value. For example, to update the Camera Location, Axes Location, and Active Section Planes properties, the flag would be 73 (1 + 8 + 64).
401 402 |
# File 'lib/sketchup-api-stubs/stubs/Sketchup/Page.rb', line 401 def update(flags) end |
#use_axes=(pagesettings) ⇒ Object
The use_axes= method sets the page’s axes property.
421 422 |
# File 'lib/sketchup-api-stubs/stubs/Sketchup/Page.rb', line 421 def use_axes=(pagesettings) end |
#use_axes? ⇒ Boolean
The use_axes? method determines whether you are storing the axes property with the page.
438 439 |
# File 'lib/sketchup-api-stubs/stubs/Sketchup/Page.rb', line 438 def use_axes? end |
#use_camera=(setting) ⇒ Object
The use_camera= method sets the page’s camera property.
457 458 |
# File 'lib/sketchup-api-stubs/stubs/Sketchup/Page.rb', line 457 def use_camera=(setting) end |
#use_camera? ⇒ Boolean
The use_camera? method determines whether you are storing the camera property with the page.
474 475 |
# File 'lib/sketchup-api-stubs/stubs/Sketchup/Page.rb', line 474 def use_camera? end |
#use_hidden=(setting) ⇒ Object
The use_hidden= method sets the page’s hidden property.
493 494 |
# File 'lib/sketchup-api-stubs/stubs/Sketchup/Page.rb', line 493 def use_hidden=(setting) end |
#use_hidden? ⇒ Boolean
The use_hidden? method determines whether you are storing the hidden property with the page.
510 511 |
# File 'lib/sketchup-api-stubs/stubs/Sketchup/Page.rb', line 510 def use_hidden? end |
#use_hidden_layers=(setting) ⇒ Object
The use_hidden_layers= method sets the page’s hidden layers property.
530 531 |
# File 'lib/sketchup-api-stubs/stubs/Sketchup/Page.rb', line 530 def use_hidden_layers=(setting) end |
#use_hidden_layers? ⇒ Boolean
The use_hidden_layers? method determines whether you are storing the hidden layers property with the page.
547 548 |
# File 'lib/sketchup-api-stubs/stubs/Sketchup/Page.rb', line 547 def use_hidden_layers? end |
#use_rendering_options=(setting) ⇒ Object
The use_rendering_optoins= method sets the page’s display settings property.
567 568 |
# File 'lib/sketchup-api-stubs/stubs/Sketchup/Page.rb', line 567 def (setting) end |
#use_rendering_options? ⇒ Boolean
The use_rendering_options? method determines whether you are storing the rendering options property with the page.
584 585 |
# File 'lib/sketchup-api-stubs/stubs/Sketchup/Page.rb', line 584 def end |
#use_section_planes=(setting) ⇒ Object
The use_section_planes= method sets the page’s section planes property.
604 605 |
# File 'lib/sketchup-api-stubs/stubs/Sketchup/Page.rb', line 604 def use_section_planes=(setting) end |
#use_section_planes? ⇒ Boolean
The use_section_planes? method determines whether you are storing the section planes property with the page.
621 622 |
# File 'lib/sketchup-api-stubs/stubs/Sketchup/Page.rb', line 621 def use_section_planes? end |
#use_shadow_info=(setting) ⇒ Object
The use_shadow_info= method sets the page’s shadow info property.
640 641 |
# File 'lib/sketchup-api-stubs/stubs/Sketchup/Page.rb', line 640 def use_shadow_info=(setting) end |
#use_shadow_info? ⇒ Boolean
The use_shadow_info? method determines whether you are storing the shadow info property with the page.
657 658 |
# File 'lib/sketchup-api-stubs/stubs/Sketchup/Page.rb', line 657 def use_shadow_info? end |
#use_style=(style) ⇒ Object
The use_style= method sets the style to be used by the page.
675 676 |
# File 'lib/sketchup-api-stubs/stubs/Sketchup/Page.rb', line 675 def use_style=(style) end |
#use_style? ⇒ Boolean
The use_style? method determines whether storing a style with the page.
691 692 |
# File 'lib/sketchup-api-stubs/stubs/Sketchup/Page.rb', line 691 def use_style? end |