MonobjcMonobjc Documented Class Library
FindFrameNamed Method (name)
NamespacesMonobjc.WebKitWebFrameFindFrameNamed(NSString)

Returns a web frame that matches the given name.

Original signature is '- (WebFrame *)findFrameNamed:(NSString *)name'

Available in Mac OS X v10.2 with Safari 1.0 and later.

Declaration Syntax
C#Visual BasicVisual C++
public virtual WebFrame FindFrameNamed(
	NSString name
)
Public Overridable Function FindFrameNamed ( _
	name As NSString _
) As WebFrame
public:
virtual WebFrame^ FindFrameNamed(
	NSString^ name
)
Parameters
name (NSString)
The name of a frame.
Return Value
For predefined names, returns the receiver if name is “_self” or “_current”, returns the receiver’s parent frame if name is “_parent”, and returns the main frame if name is “_top”. Also returns the receiver if it is the main frame and name is either “_parent” or “_top.” For other names, this method returns the first frame that matches name. Returns nil if no match is found.
Version Information
  • Available in Monobjc Bridge: 10.6 (For Mac OS X 10.6 and later), 10.5 (For Mac OS X 10.5 and later)

Assembly: Monobjc.WebKit (Module: Monobjc.WebKit)