protected void FireEvent_WillSpeak(Range aCharacterRange, Cocoa.String aString) { if (WillSpeak != null) { WillSpeak(this, aCharacterRange, aString.ToString()); } }
public void Render(string content) { Cocoa.String native_content = new Cocoa.String (content); ObjCMessaging.objc_msgSend (NativeObject, "loadHTMLString:baseURL:", typeof (void), typeof (IntPtr), native_content.NativeObject, typeof (IntPtr), IntPtr.Zero); }
public void Render(string content) { Cocoa.String native_content = new Cocoa.String(content); ObjCMessaging.objc_msgSend(NativeObject, "loadHTMLString:baseURL:", typeof(void), typeof(IntPtr), native_content.NativeObject, typeof(IntPtr), IntPtr.Zero); }
public BrowserItem(Node _node) { node = _node; caption = new Cocoa.String(node.Caption); caption.Retain(); }
public BrowserItem(Node _node) : base() { node = _node; caption = new Cocoa.String (node.Caption); caption.Retain (); }
public void SpeechSynthesizerWillSpeakWordOfString(SpeechSynthesizer aSender, Range aCharacterRange, Cocoa.String aString) { mSynth.FireEvent_WillSpeak(aCharacterRange, aString); }