RadioButtonList.FindControl(String, Int32) Method
Definition
Important
Some information relates to prerelease product that may be substantially modified before it’s released. Microsoft makes no warranties, express or implied, with respect to the information provided here.
Searches the current naming container for a server control with the specified ID and path offset. The FindControl(String, Int32) method always returns the RadioButtonList object.
protected:
override System::Web::UI::Control ^ FindControl(System::String ^ id, int pathOffset);
protected override System.Web.UI.Control FindControl (string id, int pathOffset);
override this.FindControl : string * int -> System.Web.UI.Control
Protected Overrides Function FindControl (id As String, pathOffset As Integer) As Control
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 RadioButtonList.
Remarks
The FindControl method is used primarily by control developers in custom controls that derive from the RadioButtonList class.
The FindControl method overrides the Control.FindControl method of the base Control class. You should not override this version of the Control.FindControl method.