Versions Compared

Key

  • This line was added.
  • This line was removed.
  • Formatting was changed.


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);

Methods

Insert excerpt
CN:GetPropertyNames MethodCN:
GetPropertyNames Method
nopaneltrue

Insert excerpt
CN:GetPropertyByName MethodCN:
GetPropertyByName Method
nopaneltrue

Insert excerpt
CN:SaveProperty MethodCN:
SaveProperty Method
nopaneltrue

Insert excerpt
CN:SetSingleProperty MethodCN:
SetSingleProperty Method
nopaneltrue

Insert excerpt
CN:SetMultiValueProperty MethodCN:
SetMultiValueProperty Method
nopaneltrue

Insert excerpt
CN:SetTableFieldProperty MethodCN:
SetTableFieldProperty Method
nopaneltrue

Insert excerpt
CN:GetSingleValue MethodCN:
GetSingleValue Method
nopaneltrue

Insert excerpt
CN:GetMultiValue MethodCN:
GetMultiValue Method
nopaneltrue

Insert excerpt
CN:GetTableFieldValues MethodCN:
GetTableFieldValues Method
nopaneltrue