Old Call to New Call Reference

The following is a list of the old Component Enabler Interface calls, and the equivalent call in the new CEWindowsAPI. Note that only calls that were useful or usable to the client programmer have been included in this list. Calls that were intended only for use by the runtime environment itself have been removed from the interface.

Some old method calls have been converted to 'Properties' on the new objects.

For example, to get the value of an Property:

Old Call:

if objLINC.getApplicationName() = "Sample"

New Call:

if objLINC.ApplicationName = "Sample"

To set the value of a property:

Old Call

objLINC.setApplicationName("Sample")

New Call

objLINC.ApplicationName = "Sample"

The following tables list the calls by class.