Method PropsSet

From AVObjects Knowledge Base
(Difference between revisions)
Jump to: navigation, search
(Created page with "Установить значение bsValue для свойства bsName <source lang=cpp> HRESULT PropsSet( [in] BSTR bsName, [in] BSTR bsValue ); </source> ''...")
 
 
(8 intermediate revisions by one user not shown)
Line 1: Line 1:
Установить значение bsValue для свойства bsName
+
{{This|interfaces/iavproperties/PropsSet.html}}
  
<source lang=cpp>
+
Set value bsValue for the property bsName
 +
 
 +
== ==
 +
<source lang=idl>
 
HRESULT PropsSet(
 
HRESULT PropsSet(
 
   [in] BSTR bsName,
 
   [in] BSTR bsName,
Line 8: Line 11:
 
</source>
 
</source>
  
'''Parameters:'''
+
==Parameters:==
{|
+
<pre>
|-
+
bsName Name of Property
|bsName
+
bsValue Value for property
|Name of Property
+
</pre>
|-
+
 
|bsValue
+
==Returns:==
|Value for property.
+
<pre>
|}
+
S_OK          Property values is set
 +
E_INVALIDARG  Property with name bsName not found
 +
E_FAIL        Some error.
 +
</pre>
  
''Returns:''
+
[[Category:IAVProperties]]
{|
+
|S_OK
+
|Property values is set
+
|-
+
|E_INVALIDARG
+
|Property with name bsName not found
+
|-
+
|E_FAIL
+
|Error in property value.
+
|}
+

Latest revision as of 13:25, 8 July 2014

This page is a copy of the original page on the AVObjects' web site and can also be viewed here.

Set value bsValue for the property bsName

HRESULT PropsSet(
   [in] BSTR bsName,
   [in] BSTR bsValue
   );

Parameters:

bsName  Name of Property
bsValue Value for property

Returns:

S_OK           Property values is set
E_INVALIDARG   Property with name bsName not found
E_FAIL         Some error.
Personal tools