VideoDeviceController.SetDeviceProperty(String, Object) 方法
定義
重要
部分資訊涉及發行前產品,在發行之前可能會有大幅修改。 Microsoft 對此處提供的資訊,不做任何明確或隱含的瑕疵擔保。
在擷取設備驅動器上設定具有指定標識碼的屬性值。 您可以使用這個方法來設定特定相機特有的屬性。
public:
virtual void SetDeviceProperty(Platform::String ^ propertyId, Platform::Object ^ propertyValue) = SetDeviceProperty;
void SetDeviceProperty(winrt::hstring const& propertyId, IInspectable const& propertyValue);
public void SetDeviceProperty(string propertyId, object propertyValue);
function setDeviceProperty(propertyId, propertyValue)
Public Sub SetDeviceProperty (propertyId As String, propertyValue As Object)
參數
- propertyId
-
String
Platform::String
winrt::hstring
設定值之屬性的識別碼。
- propertyValue
-
Object
Platform::Object
IInspectable
屬性的新值。
備註
屬性標識碼和預期的數據是由硬體裝置製造商決定。
常見的裝置屬性會公開為 VideoDeviceController 類別的屬性。 其他屬性定義於 屬性集KSPROPERTYSETID_ExtendedCameraControl 。 舊版屬性定義於 PROPSETID_VIDCAP_CAMERACONTROL 屬性集中。 如需依標識符存取相機屬性的範例,請參閱 擴充控件和元數據範例。