Skip to main content

This documentation is for an older version of this product. See the latest version of this content.Opens in a new tab

Final (Parameter Keyword)

Specifies whether this parameter is final (cannot be overridden in subclasses)

Usage

To specify that a parameter is final, use the following syntax:

Parameter name As parameter_type  [ Final ] = value;

Otherwise, omit this keyword or place the word Not immediately before the keyword.

Details

A class member that is marked as final cannot be overridden in subclasses.

Default

If you omit this keyword, the parameter is not final.

See Also

FeedbackOpens in a new tab