Skip to end of metadata
Go to start of metadata

You are viewing an old version of this page. View the current version.

Compare with Current View Page History

« Previous Version 2 Next »

Represents the properties of a process, containing methods for getting and setting property values.

public class Properties

Example

The following example demonstrates getting and setting property values using the Properties class.

var firstName = Process.Properties.GetSingleValue("First Name");
var lastName = Process.Properties.GetSingleValue("Last Name");
var fullName = firstName + " " + lastName;
Process.Properties.SetSingleProperty("Full Name", fullName);

Methods

Gets a list of of property names on the current process.

Gets a property object by property name.

Saves a property back to the process.

Sets the value of a single value process property.

Sets the value of a multi-value process property.

Sets the value of a table field process property.

Gets the value of a single value process property.

Gets the values of a multi-value process property.

Gets the table field values of a table field process property.

  • No labels