Query.AlterProp property

AutoCAD Map 3D ActiveX

Query.AlterProp property

Read-Only

AlterProp As AlterLines

Returns a property alteration definition.

To define property alteration, use AlterLines.Add, which assigns a valid AlterLines object to this property.To determine the status of property alteration, use Query.AlterDefined.

The following excerpt from a larger example uses the Query.AlterProp to clear property alterations that might have been created before running the example. For the complete example, click .

 

Dim qry As Query

Dim altls As AlterLines

Dim altl As AlterLine

Dim txtdf As TextDef

' Create a query -- code not shown

Set altls = qry.AlterProp

altls.RemoveAll