DOC: Form's Circle Method Accepts Negative Aspect Ratio

ID: Q189865


The information in this article applies to:
  • Microsoft Visual FoxPro for Windows, versions 5.0, 5.0a, 6.0


SUMMARY

When you use values less than -1.0 for nAspect ratio, the aspect ratio and radius values are determined as follows:


   nAspect = ABS(nAspect)

   nRadius = nRadius * nASpect 
This behavior is by design.

The Visual FoxPro help file does not describe this behavior for values of nAspect less than -1.0.


MORE INFORMATION

Steps to Reproduce Behavior

Run the following code:

   PUBLIC ox
   ox = CreateObject('form')
   ox.Show()
   ox.Circle(50, 100, 100, -2) 

Additional query words: kbVFp600 kbVFp500a kbVFp500 kbNoKeyword

Keywords :
Version : WINDOWS:5.0,5.0a,6.0
Platform : WINDOWS
Issue type :


Last Reviewed: December 10, 1999
© 2000 Microsoft Corporation. All rights reserved. Terms of Use.