Getting Items of MFFolderContentItemTypePropertyFolder

Hello,

I would like to get contents of MFFolderContentItemTypePropertyFolder of a view as shown in the attached image and also how do I get the ID 15. Thank you

Parents
  • This is a grouping.  The grouping exists within a view.  You get the contents of the view (e.g. via GetFolderContents) which will return you potentially different types of things, including the groupings.  For the groupings they have details on the TypedValue that represents the actual group.  In the case of the screenshot you should have something representing the Agenda grouping, and a TypedValue which has the display name of "Agenda" and a lookup value of 15.

  • So how do i get the contents in the Agenda?

  • You use GetFolderContents again.  That method takes a collection of FolderDef instances and you provide one instance of FolderDef for each "level" of the path.  So you would provide one for the top-level view, one for each subview, and one for each grouping level you want to list.

  • Actually, I am unable to set the level for an example how do I pass it in this code

    FolderDefs folderDefs = new FolderDefs();
    var folderDef = new FolderDef();
    folderDef.SetView(view.ID);

    folderDefs.Add(-1, folderDef);
    var mfilesSearchResult = vault.ViewOperations.GetFolderContents(folderDefs);

  • Thank you I managed to pass the variable

Reply Children