IAppointmentActiveLinks Property |
ActiveLinks - Number of active links to documents, projects, Urls, appointments, sales, contacts, persons, selections
Namespace:
SuperOffice.COM.SuperOfficeDB
Assembly:
SuperOfficeDB.Interop (in SuperOfficeDB.Interop.dll) Version: 8.0.0.0
Syntaxint ActiveLinks { get; set; }
Property ActiveLinks As Integer
Get
Set
Dim instance As IAppointment
Dim value As Integer
value = instance.ActiveLinks
instance.ActiveLinks = value
property int ActiveLinks {
int get ();
void set (int value);
}
Property Value
Type:
Int32Long - Number of active links
Examplesdim objso
set objso = CreateObject("superoffice.application")
If not (objSO is nothing) Then
msgbox "Number of active links to the appointment: " & objso.currentappointment.activeLinks, vbinformation + vbokonly, "supercom"
else
msgbox "unable to connect to database"
end if
set objso = nothing
See Also