How to Make an Array ProtectedLast reviewed: April 30, 1996Article ID: Q130989 |
The information in this article applies to:
SUMMARYThe PROTECTED keyword of the DEFINE CLASS command can be used to protect the Properties, methods, and objects in a class definition. You may want to use the PROTECTED keyword to protect an array.
MORE INFORMATIONTo protect an array property, use the keywords PROTECTED and DIMENSION on separate lines. For example, the following code would prevent the array from being changed outside of the CLASS:
PROTECTED myarray[2] DIMENSION myarray[2]The following code appears to work, but the array isn't protected:
PROTECTED DIMENSION myarray[2] REFERENCESFor more information about the PROTECTED clause, search the Visual FoxPro Help menu.
|
Additional reference words: 3.00 VFoxWin
© 1998 Microsoft Corporation. All rights reserved. Terms of Use. |