TraversalRequest.Wrapped Property

Definition

Gets or sets a value that indicates whether focus traversal has reached the end of child elements that can have focus.

public:
 property bool Wrapped { bool get(); void set(bool value); };
public bool Wrapped { get; set; }
member this.Wrapped : bool with get, set
Public Property Wrapped As Boolean

Property Value

true if this traversal has reached the end of child elements that can have focus; otherwise, false. The default is false.

Remarks

Focusable elements are those elements where the Focusable property is true.

This parameter is primarily intended to communicate whether traversal using tab stops should wrap when calling the methods TabInto, TabInto,or.OnNoMoreTabStops. If you are passing focus to an object that implements IKeyboardInputSink, then specifying true for Wrapped will result in that true value being passed to the TabInto implementation.

Applies to