Headless.HtmlList.Deselect C# (CSharp) 메소드

Deselect() 공개 메소드

Deselects the specified value.
/// No option element found for the specified value. ///
public Deselect ( string value ) : void
value string /// The value. ///
리턴 void
        public void Deselect(string value)
        {
            var item = this[value];

            if (item == null)
            {
                throw BuildItemNotFoundException(value);
            }

            item.Selected = false;
        }