Microsoft DirectX 9.0

IAMExtTransport::SetEditProperty

The SetEditProperty method defines parameters and values associated with an edit event.

Syntax

HRESULT SetEditProperty(
  long EditID,
  long Param,
  long Value
);

Parameters

EditID

[in]  Specifes the edit property set. Use the identifier returned by the IAMExtTransport::SetEditPropertySet method.

Param

[in]  Specifies the edit event parameter. See Remarks for more information.

Value

[in]  Specifies the value of the parameter. See Remarks for more information.

Return Values

When this method succeeds, it returns S_OK. Otherwise it returns an HRESULT error code.

Remarks

An edit event consists of one or more edit event parameters. Use the SetEditPropertySet method to create an edit event, and then use this method to specify the edit event parameters for that edit event.

The Param parameter is a flag that specifies the edit event parameter. The Value parameter specifies the value of that parameter. The meaning of Value depends on the flag used in Param:

DV Implementation

MSDV does not support this method. It returns E_NOTIMPL.

See Also