Class RichTextBoxBase.ParseTextBlocksDelegate
The delegate for text blocks processing.
Inheritance
System.Object
RichTextBoxBase.ParseTextBlocksDelegate
Namespace: FlaxEngine.GUI
Assembly: FlaxEngine.CSharp.dll
Syntax
public sealed class ParseTextBlocksDelegate : MulticastDelegate
Constructors
ParseTextBlocksDelegate(Object, IntPtr)
Declaration
public ParseTextBlocksDelegate(object object, IntPtr method)
Parameters
System.Object
object
|
System.IntPtr
method
|
Methods
BeginInvoke(String, List<TextBlock>, AsyncCallback, Object)
Declaration
public virtual IAsyncResult BeginInvoke(string text, List<TextBlock> textBlocks, AsyncCallback callback, object object)
Parameters
System.String
text
|
System.Collections.Generic.List<TextBlock>
textBlocks
|
System.AsyncCallback
callback
|
System.Object
object
|
Returns
System.IAsyncResult
|
EndInvoke(IAsyncResult)
Declaration
public virtual void EndInvoke(IAsyncResult result)
Parameters
System.IAsyncResult
result
|
Invoke(String, List<TextBlock>)
Declaration
public virtual void Invoke(string text, List<TextBlock> textBlocks)
Parameters
System.String
text
|
System.Collections.Generic.List<TextBlock>
textBlocks
|