|
Description
|
Returns a reference to a collection of "AppID" objects. Each object corresponds to an entry of the Application Identification table (APPID) of the DXF file.
|
Syntax Visual Basic
|
[form.]DXFReader.AppIDs
|
|
Visual C++
|
C_Collection DXFReader.GetAppIDs();
|
|
Delphi
|
property AppIDs: _Collection;
|
|
C#
|
VBA.Collection DXFReader.AppIDs;
|
|
Remarks
|
Use the AppIDs collection to retrieve or remove an individual AppID object.
The methods of the AppIDs collection are:
| Count | Counts the defined AppIDs | | Remove | Removes a AppID object from the AppIDs collection |
To count all the objects of the AppIDs collection use the following code:
Dim NAppIDs As Long
NAppIDs = DXFReader1.AppIDs.Count
To remove a AppID object, for example the first, from the AppIDs collection use the following code:
DXFReader1.AppIDs.Remove (1)
All of the properties for the AppID object are listed in the following table:
| Property | Data Type | Description |
| | Flag | Integer | Standard flag values | | ApplicationName | String | User-supplied (or application-supplied) application name (for extended data). These table entries maintain a set of names for all registered applications. | | Handle | String | Handle |
The code below lists the contents of the APPID table of e DXF file:
Dim AppID as Object
With DXFReader1
For Each AppID In .AppIDs
Printer.Print AppID.ApplicationName
Next AppID
End With
|
|
Data Type
|
Collection
|