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
SyntaxEPrivacyLevel Private { get; set; }
Property Private As EPrivacyLevel
Get
Set
Dim instance As IDocument
Dim value As EPrivacyLevel
value = instance.Private
instance.Private = value
property EPrivacyLevel Private {
EPrivacyLevel get ();
void set (EPrivacyLevel value);
}
Property Value
Type:
EPrivacyLevelEPrivacyLevel
ExamplesPrivate
This text may be copied to the notepad, and saved as a *.vbs file. Remember to change the login information.
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