AuditInfo Method

Back to Methods Reference

Evaluates the integrity of the drawing.

Signature

VBA : object.AuditInfo FixError

VL : (vla-AuditInfo object FixError)

(vla-auditinfo thisdrawing 1)

  • Object : Document
    The object or objects this method applies to.

  • FixError : Boolean; input-only
    TRUE: AutoCAD should attempt to fix any problems it encounters.
    FALSE: AutoCAD should not attempt to fix any problems it encounters.

Remarks

For every error detected, AutoCAD provides a description of the error and recommends corrective action.

If you specify FixError = TRUE, AutoCAD will attempt to fix any errors it encounters.

Example :


(defun c:al-auditinfo ()

(vl-load-com)

(setq thisdrawing (vla-get-activedocument (vlax-get-acad-object)))
                        
(vla-auditinfo thisdrawing 1)

(princ)

);defun

 
The AutoLisp/Visual Lisp/VBA Resource Website
Google
Search the WWW Search AfraLisp

Copyright © 1999-Perpetuity by AfraLisp

All rights reserved.
Information in this document is subject to change without notice.
Site created and maintained by Kenny Ramage

The AutoLisp/Visual Lisp/VBA Resource Website