EdgeInsertionMode 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 the edge insertion modes for read-only regions.
public enum class EdgeInsertionMode
public enum class EdgeInsertionMode
enum EdgeInsertionMode
public enum EdgeInsertionMode
type EdgeInsertionMode =
Public Enum EdgeInsertionMode
- Inheritance
-
EdgeInsertionMode
Fields
Name | Value | Description |
---|---|---|
Allow | 0 | Allows insertions at the edge of read-only regions. If there is a read-only region [3, 6) that allows edge insertions, an insertion at position 3 or position 6 will succeed. |
Deny | 1 | Prevents insertions at the edge of read-only regions. If there is a read-only region [3, 6) that allows edge insertions, an insertion at position 3 or position 6 will fail. |