class Google::Apis::SlidesV1::UpdatePageElementsZOrderRequest
Updates the Z-order of page elements. Z-order is an ordering of the elements on the page from back to front. The page element in the front may cover the elements that are behind it.
Attributes
operation[RW]
The Z-order operation to apply on the page elements. When applying the operation on multiple page elements, the relative Z-orders within these page elements before the operation is maintained. Corresponds to the JSON property `operation` @return [String]
page_element_object_ids[RW]
The object IDs of the page elements to update. All the page elements must be on the same page and must not be grouped. Corresponds to the JSON property `pageElementObjectIds` @return [Array<String>]
Public Class Methods
new(**args)
click to toggle source
# File lib/google/apis/slides_v1/classes.rb, line 4591 def initialize(**args) update!(**args) end
Public Instance Methods
update!(**args)
click to toggle source
Update properties of this object
# File lib/google/apis/slides_v1/classes.rb, line 4596 def update!(**args) @operation = args[:operation] if args.key?(:operation) @page_element_object_ids = args[:page_element_object_ids] if args.key?(:page_element_object_ids) end