Tool.Tasks Property
Gets the set of tasks this tool provides.
Namespace: Microsoft.Windows.Design.Interaction
Assembly: Microsoft.Windows.Design.Interaction (in Microsoft.Windows.Design.Interaction.dll)
Syntax
'Declaration
Public ReadOnly Property Tasks As Collection(Of Task)
'Usage
Dim instance As Tool
Dim value As Collection(Of Task)
value = instance.Tasks
public Collection<Task> Tasks { get; }
public:
property Collection<Task^>^ Tasks {
Collection<Task^>^ get ();
}
public function get Tasks () : Collection<Task>
Property Value
Type: System.Collections.ObjectModel.Collection<Task>
A Collection<T> of tasks this tool provides.
Remarks
The set of tasks available to a tool includes this collection and the tasks on adorners that the mouse is currently over.
.NET Framework Security
- Full trust for the immediate caller. This member cannot be used by partially trusted code. For more information, see Using Libraries from Partially Trusted Code.
See Also
Reference
Microsoft.Windows.Design.Interaction Namespace