Intersoft ClientUI Documentation
FindNameDeep Method
See Also  Send Feedback
Intersoft.Client.Framework Namespace > FrameworkElementExtensions Class : FindNameDeep Method






source
The source element which the search will start from.
name
The target element's name to find.
Find the element that matches the given name. If the element couldn't be found in the main namescope, a deep search operation will be performed.

Syntax

Visual Basic (Declaration) 
<ExtensionAttribute()>
Public Shared Function FindNameDeep( _
   ByVal source As FrameworkElement, _
   ByVal name As String _
) As Object
Visual Basic (Usage)Copy Code
Dim source As FrameworkElement
Dim name As String
Dim value As Object
 
value = FrameworkElementExtensions.FindNameDeep(source, name)
C# 
[ExtensionAttribute()]
public static object FindNameDeep( 
   FrameworkElement source,
   string name
)
Delphi 
public function FindNameDeep( 
    source: FrameworkElement;
    name: String
): TObject; static; 
JScript 
ExtensionAttribute()
public static function FindNameDeep( 
   source : FrameworkElement,
   name : String
) : Object;
Managed Extensions for C++ 
[ExtensionAttribute()]
public: static Object* FindNameDeep( 
   FrameworkElement* source,
   string* name
) 
C++/CLI 
[ExtensionAttribute()]
public:
static Object^ FindNameDeep( 
   FrameworkElement^ source,
   String^ name
) 

Parameters

source
The source element which the search will start from.
name
The target element's name to find.

Return Value

An object that matches the given name.

Requirements

Target Platforms: Windows 98, Windows NT 4.0, Windows Millennium Edition, Windows 2000, Windows XP Home Edition, Windows XP Professional, Windows Server 2003 family, Windows Vista, Windows Server 2008 family

See Also

© 2012 All Rights Reserved.