Complete the code to enable vertical overflow scrolling in a Figma frame.
frame.overflowBehavior = '[1]'
Setting overflowBehavior to vertical-scroll enables vertical scrolling when content overflows the frame height.
Complete the code to set horizontal overflow scrolling in a Figma frame.
frame.overflowBehavior = '[1]'
Setting overflowBehavior to horizontal-scroll enables horizontal scrolling when content overflows the frame width.
Fix the error in the code to enable both horizontal and vertical scrolling in a Figma frame.
frame.overflowBehavior = '[1]'
The correct value to enable both horizontal and vertical scrolling is scroll.
Fill both blanks to set a frame's overflow to vertical scroll and enable clip content.
frame.overflowBehavior = '[1]' frame.clipsContent = [2]
Setting overflowBehavior to vertical-scroll enables vertical scrolling. Setting clipsContent to true hides content outside the frame bounds.
Fill all three blanks to set horizontal scrolling, enable clip content, and set frame name to 'Scrollable Frame'.
frame.overflowBehavior = '[1]' frame.clipsContent = [2] frame.name = '[3]'
Set overflowBehavior to horizontal-scroll for horizontal scrolling. Set clipsContent to true to hide overflow content. Set name to 'Scrollable Frame' to label the frame.