Share via


ConstantTable.SetValue(Device,EffectHandle,Vector4) Method (Microsoft.DirectX.Direct3D)

Sets the value to the constant table.

Definition

Visual Basic Public Sub SetValue( _
    ByVal device As Device, _
    ByVal constant As EffectHandle, _
    ByVal vector As Vector4 _
)
C# public void SetValue(
    Device device,
    EffectHandle constant,
    Vector4 vector
);
C++ public:
void SetValue(
    Devicedevice,
    EffectHandleconstant,
    Vector4 vector
);
JScript public function SetValue(
    device : Device,
    constant : EffectHandle,
    vector : Vector4
);

Parameters

device Microsoft.DirectX.Direct3D.Device
A Device object that represents the device associated with the constant table.
constant Microsoft.DirectX.Direct3D.EffectHandle
An EffectHandle that represents a unique identifier of a constant.
vector Microsoft.DirectX.Vector4
A Vector4 structure to set to the constant table.

Remarks

Exceptions

InvalidCallException

The method call is invalid. For example, a method's parameter might contain an invalid value.