tristanlabelle / swift-winrt

A Swift Projection for WinRT APIs
MIT License
20 stars 2 forks source link

Helper properties don't get documentation comments #359

Closed tristanlabelle closed 1 month ago

tristanlabelle commented 1 month ago

_lightsProperty() is documented, but not lightsProperty.


    public static func _keyboardAcceleratorPlacementTargetProperty() throws -> MicrosoftUIXaml_DependencyProperty {
        try COM.NullResult.unwrap(_iuielementStatics.get_KeyboardAcceleratorPlacementTargetProperty())
    }

    public static var lightsProperty: MicrosoftUIXaml_DependencyProperty! {
        try! NullResult.catch(Self._lightsProperty())
    }

    /// Identifies the Lights dependency property.
    /// - Returns: The identifier for the Lights dependency property.
    public static func _lightsProperty() throws -> MicrosoftUIXaml_DependencyProperty {
        try COM.NullResult.unwrap(_iuielementStatics.get_LightsProperty())
    }