Headless.XPathNavigableExtensions.IsChecked C# (CSharp) Method

IsChecked() public static method

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