You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
19 lines
429 B
19 lines
429 B
using System.ComponentModel;
|
|
using System;
|
|
|
|
namespace Connected
|
|
{
|
|
public enum OverflowBehavior
|
|
{
|
|
[Description("flip-never")]
|
|
FlipNever,
|
|
[Obsolete("This value has a typo and will be removed. Please use FlipOnOpen")]
|
|
[Description("flip-onopen")]
|
|
FilpOnOpen,
|
|
[Description("flip-onopen")]
|
|
FlipOnOpen,
|
|
[Description("flip-always")]
|
|
FlipAlways,
|
|
}
|
|
}
|