InternetExplorerWebElement ClassWebDriver
InternetExplorerWebElement allows you to have access to specific items that are found on the page.
Inheritance Hierarchy

OnlineSystem Object
  OpenQA.Selenium.Remote RemoteWebElement
    OpenQA.Selenium.IE InternetExplorerWebElement

Namespace: OpenQA.Selenium.IE
Assembly: WebDriver (in WebDriver.dll) Version: 2.35.0.0 (2.35.0.0)
Syntax

public class InternetExplorerWebElement : RemoteWebElement
Examples

[Test]
public void TestGoogle()
{
    driver = new InternetExplorerDriver();
    InternetExplorerWebElement elem = driver.FindElement(By.Name("q"));
    elem.SendKeys("Cheese please!");
}
See Also