In VB, Standard modules and Class modules. provides three kind of property procedures but following not include in this

property let procedure
property get procedure
property set procedure
property post procedure

The correct answer is D. property post procedure.

A property is a variable that is accessed through a special set of procedures called property procedures. There are three types of property procedures:

  • Property Get: This procedure is used to get the value of the property.
  • Property Let: This procedure is used to set the value of the property.
  • Property Set: This procedure is used to set the value of the property and also to perform any other actions that need to be done when the property is set.

A property post procedure is a procedure that is called after a property has been set. Property post procedures are not supported in VB.