Description
Resets any scale dependent object properties to the default values.
Objects implement this function to support AutoCAD's ANNORESET command. Objects may implement properties which are scale dependent, for example the position or rotation of the object. Objects that wish to support the ANNORESET command should provide an implementation of this method which resets all scale-dependent properties to match the properties of the current scale (or of a default scale, determined by the object, if the object doesn't support the current scale).
Visual Basic
Public Function ResetScaleDependentProperties() As void
C#
public void ResetScaleDependentProperties();