In addition to using the property accessor methods, you can access properties directly.

When accessing these properties on the RunTimeProperties class, use the class name to access the property. For example:

RunTimeProperties.InitialConnections = 5

When calling these properties on a Connection object, use the instance of the object to access the property. For example:

ConnectObj.SetIntProperty.InitialConnections = 5

Where ConnectObj is an instance of the Progress.Open4GL.Proxy.Connection class.