[Progress Communities] [Progress OpenEdge ABL] Forum Post: Multilanguage files, get All versions(each language) of a single file

  • Thread starter Thread starter hugo.aguirre@bray.com
  • Start date Start date
Status
Not open for further replies.
H

hugo.aguirre@bray.com

Guest
I have a site with multilanguage. In documents and files I added files with their corresponding version in each language. I want to get all versions of the selected document. I did this: public void GetDocumentLanguageVersions(IEnumerable documentsId) { var librariesManager = LibrariesManager.GetManager(); List documents = librariesManager.GetDocuments().Where(document =>documentsId.Contains(document.Id)).ToList(); Document proof = documents.FirstOrDefault(); string[] languages = proof.AvailableLanguages; var languageData = proof.LanguageData; //In this object I can see the number of languages available for this document but it does not show me the ids } Thanks in advanced.

Continue reading...
 
Status
Not open for further replies.
Back
Top