NewItemPlaceholderPosition Enum
Definition
Important
Some information relates to prerelease product that may be substantially modified before it’s released. Microsoft makes no warranties, express or implied, with respect to the information provided here.
Specifies where the placeholder for a new item appears in the collection.
public enum class NewItemPlaceholderPosition
public enum NewItemPlaceholderPosition
type NewItemPlaceholderPosition =
Public Enum NewItemPlaceholderPosition
- Inheritance
Fields
Name | Value | Description |
---|---|---|
None | 0 | The collection does not use a new item placeholder. The position of items that are added depends on the underlying collection. Usually, they are added at the end of the collection. |
AtBeginning | 1 | The placeholder for a new item appears at the beginning of the collection. New items are at the beginning of the collection, after the new item placeholder. |
AtEnd | 2 | The placeholder for a new item appears at the end of the collection. New items are added at the end of the collection, before the new item placeholder. |