Excerpt |
---|
Represents the properties of a process, containing methods for getting and setting property values. |
Code Block |
---|
public class Properties |
Example
The following example demonstrates getting and setting property values using the Properties class.
Code Block |
---|
var firstName = Process.Properties.GetSingleValue("First Name");
var lastName = Process.Properties.GetSingleValue("Last Name");
var fullName = firstName + " " + lastName;
Process.Properties.SetSingleProperty("Full Name", fullName); |
...
Filter by label (Content by label) |
---|
...
|
...
...
...
...
...
...
...
...
...
|