The access scope of a class method determines how you can use the method outside its class.
Complete the following steps to determine where you can use a class method.
Option | Description |
---|---|
Public | Any VI or CDL in the project can access the method. |
Private | Only members of the same class can access the method. |
Protected | Any member of the same class or a child class can access the method. |
Community | Any VI, CDL, or class member on the Friends list can access the method |