Flag type.

Namespace: BasicCard.BasicCards.Components
Assembly: BasicCard (in BasicCard.dll) Version: 2.5.2.0 (2.5.2.0)

Syntax

C#
[SerializableAttribute]
[CLSCompliantAttribute(true)]
[FlagsAttribute]
public enum FlagAttributeValue
Visual Basic
<SerializableAttribute>
<CLSCompliantAttribute(true)>
<FlagsAttribute>
Public Enumeration FlagAttributeValue
Visual C++
[SerializableAttribute]
[CLSCompliantAttribute(true)]
[FlagsAttribute]
public enum class FlagAttributeValue
F#
[<SerializableAttribute>]
[<CLSCompliantAttribute(true)>]
[<FlagsAttribute>]
type FlagAttributeValue

Members

Member nameValueDescription
Set1 This is the value bit of the flag. If set the Flag is set. If not set the Flag is reset.
Permanent2 The flag retains its value when the card is reset or powered down.
ClearOnNewApp4 The flag is cleared whenever an Application is selected.
ClearOnCommand8 The flag is cleared whenever the card receives a command.

See Also