Headless.XPathNavigableExtensions.IsChecked C# (CSharp) 메소드

IsChecked() 공개 정적인 메소드

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