MCPcopy Create free account
hub / github.com/TheRedDeveloper/ply-engine / focus_down

Method focus_down

src/accessibility.rs:225–228  ·  view source on GitHub ↗

When the down arrow key is pressed while this element is focused, focus moves to the given target element.

(&mut self, target: impl Into<Id>)

Source from the content-addressed store, hash-verified

223 /// When the down arrow key is pressed while this element is focused,
224 /// focus moves to the given target element.
225 pub fn focus_down(&mut self, target: impl Into<Id>) -> &mut Self {
226 self.config.focus_down = Some(target.into().id);
227 self
228 }
229
230 /// Disables the automatic focus ring on this element.
231 pub fn disable_ring(&mut self) -> &mut Self {

Callers 1

builder_focus_directionsFunction · 0.80

Calls

no outgoing calls

Tested by 1

builder_focus_directionsFunction · 0.64