IModelKeyReference::SetKeyValue 方法 (dbgmodel.h)

键引用上的 SetKeyValue 方法的行为与 IModelObject 上的 SetKeyValue 方法的行为相同。 它将分配键的值。 如果原始键是属性访问器,则会在属性访问器上调用基础 SetValue 方法,而不是替换属性访问器本身。

语法

HRESULT SetKeyValue(
  IModelObject *object
);

参数

object

要分配给键的值。

返回值

此方法返回指示成功或失败的 HRESULT。

注解

代码示例

ComPtr<IDataModelManager> spManager; /* get the data model manager */
ComPtr<IModelObject> spObject;       /* get an object */

ComPtr<IModelKeyReference> spKeyRef;
if (SUCCEEDED(spObject->GetKeyReference(L"Id", &spKeyRef, nullptr)))
{
    VARIANT vtValue;
    vtValue.vt = VT_UI8;
    vtValue.ullVal = 42;

    ComPtr<IModelObject> sp42;
    if (SUCCEEDED(spManager->CreateIntrinsicObject(ObjectIntrinsic, &vtValue, &sp42)))
    {
        if (SUCCEEDED(spKeyRef->SetKeyValue(sp42.Get())))
        {
            // The value of the "Id" key is now 42.  If the "Id" key originally 
            // was a property accessor, this successfully called
            // the SetValue() method on the property accessor.  In such a case, 
            // the property accessor was not replaced with the static 42, 
            // it was called to set the value 42.
        }
    }
}

要求

要求
Header dbgmodel.h

另请参阅

IModelKeyReference 接口