EdgeInsertionMode Enum

Definition

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

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.

Applies to