Edit

Share via


CheckBoxList.FindControl(String, Int32) Method

Definition

Searches the current naming container for a server control with the specified ID and path offset. The FindControl(String, Int32) method always returns the CheckBoxList object.

protected override System.Web.UI.Control FindControl(string id, int pathOffset);

Parameters

id
String

The identifier for the control to find.

pathOffset
Int32

The number of controls up the page control hierarchy needed to reach a naming container.

Returns

The current CheckBoxList.

Remarks

The FindControl method is used primarily by control developers in custom controls that derive from the CheckBoxList class.

The FindControl method overrides the FindControl method of the base Control class. You should not override this version of the FindControl method.

Applies to

Product Versions
.NET Framework 1.1, 2.0, 3.0, 3.5, 4.0, 4.5, 4.5.1, 4.5.2, 4.6, 4.6.1, 4.6.2, 4.7, 4.7.1, 4.7.2, 4.8, 4.8.1

See also