Click or drag to resize

IRecurrenceRecurrenceInfoText Property

Description of the recurring event.

Namespace:  SuperOffice.COM.SuperOfficeDB
Assembly:  SuperOfficeDB.Interop (in SuperOfficeDB.Interop.dll) Version: 8.0.0.0
Syntax
string RecurrenceInfoText { get; }

Property Value

Type: String
String - The description
Examples

RecurrenceInfoText

VB
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