ISpSREngine::SetPropertyNum (SAPI 5.4)

Microsoft Speech API 5.4

ISpSREngine::SetPropertyNum

ISpSREngine::SetPropertyNum sets a numerical property value on the SR engine. 

  
    HRESULT SetPropertyNum(SPPROPSRC         eSrc,
   void             *pvSrcObj,
   const WCHAR      *pName,
   LONG              lValue
);

Parameters

  • eSrc
    [in] One of the types specified in the SPPROPSRC enumeration sequence. (This will currently always be SPPROPSRC_RECO_INST).
  • pvSrcObj
    [in] Pointer to additional information. (Currently always NULL).
  • pName
    [in] String containing the property name.
  • lValue
    [in] Value that the property should be set to.

Return values

Value
S_OK
S_FALSE
FAILED(hr)

Remarks

Applications can use properties to control run-time results of the SR engine. The application can set and get values for specific attributes on the engine. Some values are predefined by SAPI and others may be added by an engine. See SAPI 5.0 SR Properties White Paper for more details.

This method is called on the engine by SAPI when the application calls ISpProperties::SetPropertyNum on its recognition context object. If the engine returns S_OK from this method, indicating that it supports this property and has changed the value for it, SAPI will send an SPEI_PROPERTY_NUM_CHANGE event to all contexts to inform them of this change.