public func setValue(_ dp: MicrosoftUIXaml_DependencyProperty?, _ value: WindowsRuntime.IInspectable?) throws {
try _idependencyObject.setValue(dp, value)
}
/// Clears the local value of a dependency property.
/// - Parameter dp: The DependencyProperty identifier of the property for which to clear the value.
public func clearValue(_ dp: MicrosoftUIXaml_DependencyProperty?) throws {
try _idependencyObject.clearValue(dp)
}