WorkbookPlacement Enumeration

This enumeration specifies where to place the new item in the Workbook relative to current items.

Syntax Constants
Enum WorkbookPlacement
    scWorkbookFirstChild = 0
    scWorkbookLastChild = 1
    scWorkbookPreviousSibling = 2
    scWorkbookNextSibling = 3
    scWorkbookDefaultPlacement = 4
End Enum
  • scWorkbookFirstChild: Item is the first subitem beneath the specified item.
  • scWorkbookLastChild: Item is the last subitem beneath the specified item.
  • scWorkbookPreviousSibling: Item is directly above the specified item.
  • scWorkbookNextSibling: Item is directly beneath the specified item.
  • scWorkbookDefaultPlacement: Item is inserted in reference to the default behavior.