BlueCielo Meridian Enterprise 2013 Developer's Guide | BlueCielo ECM Solutions

IAMDocumentUISync interface

This interface implements functionality required to synchronize files with the Meridian Enterprise database. As opposed to IAMEdmItemsUIMenu, IAMDocumentUISync can only be used for a single document, not a batch.

Members
Name Description

ReadTitleBlockFields method

Synchronizes properties from file

WriteTitleBlockFields (AMTBUF_WRITETB_ALWAYS) method

Synchronizes properties to file

UpdateReferences method

Synchronizes references

Remarks

IAMDocumentUISync is an interface of AMDocumentUI object.

See Synchronizing properties with document content for an alternative method of synchronizing files.

Example

Private Sub ReadTitleBlock(ByVal dr As AMDocumentRepository, ByVal doc As AMDocument)
    Dim docui As New AMDocumentUI
    Dim per As IAMEdmUIPersist
    Dim sync As IAMDocumentUISync

    Set per = docui
    docui.Init doc, Nothing

    Set sync = docui
    sync.ReadTitleBlockFields

...........
End Sub

Copyright © 2000-2013 BlueCielo ECM Solutions