ThbTapiAddress.AddressID
Unit: hbTapi 
 

The identifier of the address. TAPI assigns address identifiers to the addresses. An address identifier is a number between 0 and the number of addresses on the line minus one (ThbTapiLine.Addresses.Count-1). The AddressID is used in many methods and properties to select an address on the line device.

Some of those are:

ThbTapiLine.MakeCall, ThbTapiLine.CallOptions.AddressID, ThbTapiLine.Unpark

Example: Make a call on the same address as CallA

hbTapiLine1.CallOptions.AddressID := CallA.Address.AddressID;
try
   hbTapiLine1.MakeCall('100');
except
end;

Availability

Design-Time: None / Run-Time: Read

Declaration

propert AddressID : Integer;

See Also

ThbTapiLine.Addresses, ThbTapiLine.AddressList