Inheritance: Object
Example #1
0
 protected void FireEvent_WillSpeak(Range aCharacterRange, Cocoa.String aString)
 {
     if (WillSpeak != null)
     {
         WillSpeak(this, aCharacterRange, aString.ToString());
     }
 }
Example #2
0
 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);
 }
Example #4
0
 public BrowserItem(Node _node)
 {
     node    = _node;
     caption = new Cocoa.String(node.Caption);
     caption.Retain();
 }
Example #5
0
 public BrowserItem(Node _node)
     : base()
 {
     node = _node;
     caption = new Cocoa.String (node.Caption);
     caption.Retain ();
 }
Example #6
0
 public void SpeechSynthesizerWillSpeakWordOfString(SpeechSynthesizer aSender, Range aCharacterRange, Cocoa.String aString)
 {
     mSynth.FireEvent_WillSpeak(aCharacterRange, aString);
 }