home *** CD-ROM | disk | FTP | other *** search
/ Global Amiga Experience / globalamigaexperience.iso / graphic / cad / xcad3000 / xcdoc / verent < prev    next >
Text File  |  1995-07-10  |  3KB  |  79 lines

  1.  
  2.    11.1 VERIFY ENTITY
  3.  
  4.  
  5. VERIFY ENTITY is used to display database information for selected entities.
  6. The command can be used to obtain information about entities such as
  7. coordinate data, arc parameters, text parameters, layer, depth and viewport.
  8.  
  9.  
  10.    COMMAND FORMAT
  11.  
  12.       #VERIFY ENTITY [modifiers] [CR]
  13.  
  14.          or
  15.  
  16.       #VERIFY ENTITY INDEX n [modifiers] [CR]
  17.  
  18.          or
  19.  
  20.       #VERIFY ENTITY [modifiers] :Ent x1 x2 ... xn
  21.  
  22. If the command is terminated with a return, then the entire database is
  23. scanned and listed.
  24.  
  25. Using the INDEX modifier all an entity to be identified by its index number.
  26.  
  27. If the command is terminated with a colon, then entities are identified via
  28. IDENTS.
  29.  
  30.  
  31. The example below is a typical database listing for an arc entity:
  32.  
  33.     Entity ARC   Viewport SHEET
  34.    -------------------------------------------------------------------------
  35.     Index 1025 (00000401)  Type 4  Viewport 0  Layer 0  Depth 3
  36.     Flags: visible OFF exclude OFF non-delete OFF IDENTS OFF hilite OFF
  37.     Database size       84    Graphics data size       96
  38.    -------------------------------------------------------------------------
  39.    
  40.    
  41.    === Coordinate list                blockID 3  subID 0  length 16
  42.    
  43.          5.177989      4.251153
  44.    
  45.    
  46.    === Arc parameters                 blockID 5  subID 0  length 24
  47.    
  48.     Radius: 5.864300  Start angle: 15.073  End angle: 88.256
  49.    
  50. Some of the information listed is only of use to programmers.
  51.  
  52.  
  53.    MODIFIERS
  54.  
  55. INDEX          The INDEX modifier can be used to identify an entity by its
  56.                index number. The index number - between 1 and 65535 - should
  57.                follow the modifier.
  58.  
  59.                Index number 1 is the drawing itself. This can be verified
  60.                to reveal any system parameters saved with the drawing.
  61.  
  62.                Index numbers 2 to 33 are the viewport entities. These can
  63.                be examined to list text and dimension parameters etc. Index
  64.                number 2 is the sheet viewport.
  65.  
  66.                Index numbers 34 to 1024 are reserved for future use. Actual
  67.                entities only start at index 1025.
  68.  
  69. HEADERONLY     If the HEADERONLY modifier is used, then only the header data
  70.                for each identified entity is listed.
  71.  
  72. HEXDUMP        The HEXDUMP modifier will cause database information to be
  73.                listed in hexidecimal format.
  74.  
  75. COUNT          Count is used to produce a list of the number of each type
  76.                of entity in the current drawing.
  77.  
  78.  
  79.