Gets and sets description of the procedure as a String. | |
Syntax: | String =
object.Description object.Description = String |
Description: | The Description property gets and sets
description of the procedure as a String. Example: Sub GefProcedure_Description() Dim oCimObj As GefObject Dim oCimProcedure As
GefProcedure Set oCimObj = CimGetObject Set oCimProcedure =
oCimObj.Procedures.Item(0) oCimProcedure.Description = "This is
the first " & _ "procedure's
description" MsgBox "The description for the first
procedure is " & _ """" &
oCimProcedure.Description & """" End Sub |