IRecurrenceRecurrenceInfoText Property |
Description of the recurring event.
Namespace:
SuperOffice.COM.SuperOfficeDB
Assembly:
SuperOfficeDB.Interop (in SuperOfficeDB.Interop.dll) Version: 8.0.0.0
Syntaxstring RecurrenceInfoText { get; }
ReadOnly Property RecurrenceInfoText As String
Get
Dim instance As IRecurrence
Dim value As String
value = instance.RecurrenceInfoText
property String^ RecurrenceInfoText {
String^ get ();
}
Property Value
Type:
StringString - The description
ExamplesRecurrenceInfoText
Dim db As New Database
If db.Login("<username>", "<password>") Then
Dim appnt As SOAppointment
appnt = db.GetAppointment(466)
MsgBox(appnt.Recurrence.RecurrenceInfoText)
Else
MsgBox("failed to log in")
End If
See Also