Gets or sets the actual size of the displacement value.

Namespace: SharpAssembler.x86
Assembly: SharpAssembler x86-64 (in SharpAssembler x86-64.dll) Version: 1.0.0.0 (1.0.0.0)

Syntax

C#
public DataSize DisplacementSize { get; set; }
Visual Basic
Public Property DisplacementSize As DataSize
	Get
	Set
Visual C++
public:
property DataSize DisplacementSize {
	DataSize get ();
	void set (DataSize value);
}

Field Value

A member of the DataSize enumeration. The default is None.

Exceptions

ExceptionCondition
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)

See Also