MonobjcMonobjc Documented Class Library
InitWithFrameFrameNameGroupName Method (frameRect, frameName, groupName)
NamespacesMonobjc.WebKitWebViewInitWithFrameFrameNameGroupName(NSRect, NSString, NSString)

Initializes the receiver with a frame rectangle, frame name, and group name.

Original signature is '- (id)initWithFrame:(NSRect)frameRect frameName:(NSString *)frameName groupName:(NSString *)groupName'

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

Declaration Syntax
C#Visual BasicVisual C++
public virtual Id InitWithFrameFrameNameGroupName(
	NSRect frameRect,
	NSString frameName,
	NSString groupName
)
Public Overridable Function InitWithFrameFrameNameGroupName ( _
	frameRect As NSRect, _
	frameName As NSString, _
	groupName As NSString _
) As Id
public:
virtual Id^ InitWithFrameFrameNameGroupName(
	NSRect frameRect, 
	NSString^ frameName, 
	NSString^ groupName
)
Parameters
frameRect (NSRect)
The frame rectangle for the created view object.
frameName (NSString)
The web frame’s name. This should not be one of the predefined frame names (see the WebFramefindFrameNamed: method for a description of their meaning), but a custom name or a name used in HTML source. This parameter can be nil.
groupName (NSString)
An arbitrary identifier used to group related frames. For example, JavaScript running in a frame can access any other frame in the same group. It's up to the application how it chooses to scope related frames. This parameter can be nil.
Return Value
An initialized view object or nil if the object couldn't be created.
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)