greenshot/GreenshotOfficePlugin/OfficeInterop/OneNote/HierarchyScope.cs
Krom, Robertus bef29df3db Fixed plugin loading
Moved all office interop types in their own file.
2020-02-18 15:10:37 +01:00

10 lines
No EOL
643 B
C#

namespace GreenshotOfficePlugin.OfficeInterop.OneNote
{
public enum HierarchyScope {
hsSelf = 0, // Gets just the start node specified and no descendants.
hsChildren = 1, //Gets the immediate child nodes of the start node, and no descendants in higher or lower subsection groups.
hsNotebooks = 2, // Gets all notebooks below the start node, or root.
hsSections = 3, //Gets all sections below the start node, including sections in section groups and subsection groups.
hsPages = 4 //Gets all pages below the start node, including all pages in section groups and subsection groups.
}
}