How to add your knowledge

getDXFstring()

    Table of contents
    1. 1. Synopsis
    2. 2. Syntax
    3. 3. Example 1

    Synopsis

    Returns the value of the DXF group code for the entity as a String. The group code must have a string value. Generates an error if the handle cannot be used to find an entity, or if the group code does not exist for the entity.

    Syntax

    getDXFstring ( handle As String, _
                   code As Integer ) As String 
    Argument Type Description
    handle string Handle of the AutoCAD entity. Must be the "modelSelf" handle, such as: first(insert_1.modelSelf) . Note: modelSelf returns a list, so you must use the first() function to retrieve only the first element.
    code integer The DXF group code.

    Example 1

    Insert with DXF code 0 (Entity type)

    Intent >getDXFstring(First(TestInsert.modelSelf), 0) 
    --> "INSERT"