Click or drag to resize

IDocumentPrivate Property

Visible for who? 0=public,1=private,2=group The private flag specifies who is allowed to see this document

Namespace:  SuperOffice.COM.SuperOfficeDB
Assembly:  SuperOfficeDB.Interop (in SuperOfficeDB.Interop.dll) Version: 8.0.0.0
Syntax
EPrivacyLevel Private { get; set; }

Property Value

Type: EPrivacyLevel
EPrivacyLevel
Examples

Private

This text may be copied to the notepad, and saved as a *.vbs file. Remember to change the login information.

VB
dim objso
set objso = CreateObject("superoffice.application")
If not (objSO is nothing) Then 
    msgbox "current document private flag: " & objso.currentdocument.private, vbinformation  + vbokonly, "supercom"
else
    msgbox "unable to connect"
end if
set objso = nothing

See Also