Exemple #1
0
 /// <summary>
 /// Sets the option for this IUITechnologyElement.
 /// </summary>
 /// <param name="technologyElementOption">The element option to set.</param>
 /// <param name="optionValue">The value of this element option.</param>
 /// <exception cref="System.NotSupportedException">Throws System.NotSupportedException
 /// if the element option is not supported.</exception>
 public override void SetOption(UITechnologyElementOption technologyElementOption, object optionValue)
 {
     InnerElement.SetOption(technologyElementOption, optionValue);
 }
Exemple #2
0
 /// <summary>
 /// Gets the option for this IUITechnologyElement.
 /// </summary>
 /// <param name="technologyElementOption">The element option to get.</param>
 /// <returns>The value of this element option. </returns>
 /// <exception cref="System.NotSupportedException">Throws System.NotSupportedException
 /// if the element option is not supported.</exception>
 public override object GetOption(UITechnologyElementOption technologyElementOption)
 {
     return(InnerElement.GetOption(technologyElementOption));
 }