Comment - property of the PmEventItem object
Description:
Event item comment.
Note:
Property access
for read and write.
The comment of the event item is usually connected with the moment of the event creation and usually it is entered as an optional
sComment parameter in the
Activate method.
Example:
JavaScriptVBScriptSelect and copy to clipboard
var oEv = pMe.Pm("/Event");
var oEvItem = oEv.Item("Temperature");
var sComment = oEvItem.Comment;
Dim oEv
Set oEv = pMe.Pm("/Event")
Dim oEvItem
Set oEvItem = oEv.Item("Temperature")
Dim sComment
sComment = oEvItem.Comment