Gets or sets the actual size of the immediate value.
Namespace: SharpAssembler.x86Assembly: SharpAssembler x86-64 (in SharpAssembler x86-64.dll) Version: 1.0.0.0 (1.0.0.0)
Syntax
C# |
---|
public DataSize ImmediateSize { get; set; } |
Visual Basic |
---|
Public Property ImmediateSize As DataSize Get Set |
Visual C++ |
---|
public: property DataSize ImmediateSize { DataSize get (); void set (DataSize value); } |
Field Value
A member of the DataSize enumeration. The default is None.
Exceptions
Exception | Condition |
---|---|
System.ComponentModel..::..InvalidEnumArgumentException | !(Enum.IsDefined(typeof(DataSize), value)) |
Contracts
Get
Ensures |
---|
Enum.IsDefined(typeof(DataSize), Contract.Result<DataSize>()) |
Set
Requires |
---|
Enum.IsDefined(typeof(DataSize), value) |