TraversalRequest::Wrapped Property

 

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

Namespace:   System.Windows.Input
Assembly:  WindowsBase (in WindowsBase.dll)

public:
property bool Wrapped {
	bool get();
	void set(bool value);
}

Property Value

Type: System::Boolean

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

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.

.NET Framework
Available since 3.0
Return to top
Show: