When implemented by a class, gets or sets the meta data of the process.
When implemented by a class, gets or sets the priority of the Process. This priority is typically used to
promote the Process on a user's worklist to take presidence over other similar Process
objects.
Syntax
Visual Basic (Declaration) | |
---|
Property Priority As Integer
|
Visual Basic (Usage) | Copy Code |
---|
Dim instance As IProcess
Dim value As Integer
instance.Priority = value
value = instance.Priority
|
C# | |
---|
int Priority {get; set;}
|
C++/CLI | |
---|
property int Priority {
int get();
void set ( int value);
}
|
Requirements
Target Platforms: Windows 7, Windows Vista SP1 or later, Windows XP SP3, Windows Server 2008 (Server Core not supported), Windows Server 2008 R2 (Server Core supported with SP1 or later), Windows Server 2003 SP2
See Also