Returns the person picture as an ISOPicture object.
Namespace:
SuperOffice.COM.SuperOfficeDB
Assembly:
SuperOfficeDB.Interop (in SuperOfficeDB.Interop.dll) Version: 8.0.0.0
SyntaxISOPicture Picture { get; }
ReadOnly Property Picture As ISOPicture
Get
Dim instance As IPerson
Dim value As ISOPicture
value = instance.Picture
property ISOPicture^ Picture {
ISOPicture^ get ();
}
Property Value
Type:
ISOPicture
ExamplesPicture
Dim objSO
Set objSO = CreateObject("SuperOffice.Application")
If not (objSO is nothing) Then
MsgBox "Current person Picture identity: " & objSO.CurrentPerson.Picture.Id, vbInformation + vbOkOnly, "SuperCOM"
else
MsgBox "Unable to connect to database"
end if
Set objSO = Nothing
See Also