C# Class Fizzler.Systems.WinForms.ControlSelection

Selectors API for Control.
For more information, see Selectors API.
Show file Open project: atifaziz/Fizzler

Public Methods

Method Description
QuerySelector ( this control, string selector ) : Control

Similar to QuerySelectorAll except it returns only the first control matching the supplied selector strings.

QuerySelectorAll ( this control, string selector ) : IEnumerable

Retrieves all controls from descendants of the starting control that match any selector within the supplied selector strings.

Method Details

QuerySelector() public static method

Similar to QuerySelectorAll except it returns only the first control matching the supplied selector strings.
public static QuerySelector ( this control, string selector ) : Control
control this
selector string
return System.Windows.Forms.Control

QuerySelectorAll() public static method

Retrieves all controls from descendants of the starting control that match any selector within the supplied selector strings.
public static QuerySelectorAll ( this control, string selector ) : IEnumerable
control this
selector string
return IEnumerable