[]
Gets the position of the corner fold.
Returns the CornerPosition flags that indicate which corners display the fold. If no corner position is set, this property returns None.
public CornerPosition Position { get; }
Public ReadOnly Property Position As CornerPosition
CornerFold cornerFold = new CornerFold(
Color.Red,
CornerPosition.LeftTop | CornerPosition.RightTop,
8
);
CornerPosition positions = cornerFold.Position;