Table of Contents

Enum FlagsOrEnum

Namespace
Alternet.UI
Assembly
Alternet.UI.Common.dll

Represents the classification of an object as either a standard enumeration, a flags enumeration, or neither.

public enum FlagsOrEnum

Fields

Enum = 1

The object is a standard enum.

Flags = 2

The object is an enum marked with [Flags] attribute.

None = 0

The object is not an enum or flags.

Remarks

This enumeration is used to distinguish between objects that are standard enums, enums marked with the FlagsAttribute, or objects that are not enums at all.