class Google::Apis::DfareportingV3_3::FsCommand
Attributes
left[RW]
Distance from the left of the browser.Applicable when positionOption is DISTANCE_FROM_TOP_LEFT_CORNER. Corresponds to the JSON property `left` @return [Fixnum]
position_option[RW]
Position in the browser where the window will open. Corresponds to the JSON property `positionOption` @return [String]
top[RW]
Distance from the top of the browser. Applicable when positionOption is DISTANCE_FROM_TOP_LEFT_CORNER. Corresponds to the JSON property `top` @return [Fixnum]
window_height[RW]
Height of the window. Corresponds to the JSON property `windowHeight` @return [Fixnum]
window_width[RW]
Width of the window. Corresponds to the JSON property `windowWidth` @return [Fixnum]
Public Class Methods
new(**args)
click to toggle source
# File lib/google/apis/dfareporting_v3_3/classes.rb, line 6410 def initialize(**args) update!(**args) end
Public Instance Methods
update!(**args)
click to toggle source
Update properties of this object
# File lib/google/apis/dfareporting_v3_3/classes.rb, line 6415 def update!(**args) @left = args[:left] if args.key?(:left) @position_option = args[:position_option] if args.key?(:position_option) @top = args[:top] if args.key?(:top) @window_height = args[:window_height] if args.key?(:window_height) @window_width = args[:window_width] if args.key?(:window_width) end