Click or drag to resize

ISOPictureWriteToFile Method

Write picture to a file. Supports GIF, JPG, BMP formats.

Namespace:  SuperOffice.COM.SuperOfficeDB
Assembly:  SuperOfficeDB.Interop (in SuperOfficeDB.Interop.dll) Version: 8.0.0.0
Syntax
void WriteToFile(
	string path
)

Parameters

path
Type: SystemString
full path to file
Examples
VB
Dim db As New Database
If db.Login("jr", "") Then
    Dim picture As ISOPicture
    Dim msg As String = ""
    Dim person As SOPerson = db.GetPerson(7)
    person.Picture.WriteToFile("c:\john.jpg")
Else
    MsgBox("could not log on")
End If
See Also