pub struct UpdateEmbeddedObjectPositionRequest {
pub fields: Option<FieldMask>,
pub new_position: Option<EmbeddedObjectPosition>,
pub object_id: Option<i32>,
}Expand description
Update an embedded object’s position (such as a moving or resizing a chart or image).
This type is not used in any activity, and only used as part of another schema.
Fields§
§fields: Option<FieldMask>The fields of OverlayPosition that should be updated when setting a new position. Used only if newPosition.overlayPosition is set, in which case at least one field must be specified. The root newPosition.overlayPosition is implied and should not be specified. A single "*" can be used as short-hand for listing every field.
new_position: Option<EmbeddedObjectPosition>An explicit position to move the embedded object to. If newPosition.sheetId is set, a new sheet with that ID will be created. If newPosition.newSheet is set to true, a new sheet will be created with an ID that will be chosen for you.
object_id: Option<i32>The ID of the object to moved.
Trait Implementations§
Source§impl Clone for UpdateEmbeddedObjectPositionRequest
impl Clone for UpdateEmbeddedObjectPositionRequest
Source§fn clone(&self) -> UpdateEmbeddedObjectPositionRequest
fn clone(&self) -> UpdateEmbeddedObjectPositionRequest
1.0.0 · Source§fn clone_from(&mut self, source: &Self)
fn clone_from(&mut self, source: &Self)
source. Read more