Пример #1
0
 /// <summary>
 /// Gets or sets an option element.
 /// </summary>
 /// <param name="index">The index of the element.</param>
 /// <returns>The option at the given index.</returns>
 public IHtmlOptionElement this[Int32 index]
 {
     get { return(_options.GetOptionAt(index)); }
     set { _options.SetOptionAt(index, value); }
 }