Interface IFxTextCallback
public interface IFxTextCallback
{
// Methods
public abstract void endTextPaint(Graphics g);
public abstract void endTextUpdate(Graphics g, txtRun runs);
}
The callback interface of FxFormattedText updates the owner object and enables it to modify text runs.
public abstract void endTextPaint(Graphics g);
This method is called when FxFormattedText ends text painting.
Return Value:
No return value.
Parameter | Description |
g
| The graphic object used.
|
public abstract void endTextUpdate(Graphics g, txtRun runs);
This method is called when the FxFormattedText.ensureNotDirty has finished text updates.
Return Value:
No return value.
Parameter | Description |
g
| The graphic object used.
|
runs
| The text run to end updates for.
|