Headless.XPathNavigableExtensions.IsChecked C# (CSharp) Méthode

IsChecked() public static méthode

Determines whether the specified navigable is checked.
public static IsChecked ( this navigable ) : bool
navigable this /// The navigable. ///
Résultat bool
        public static bool IsChecked(this IXPathNavigable navigable)
        {
            return HasAttribute(navigable, "checked");
        }