Edit

Share via


ComposeDelegate Delegate

Definition

A callback delegate used to compose two Unicode code points into a single code point using Unicode canonical composition.

public delegate bool ComposeDelegate(UnicodeFunctions ufuncs, uint a, uint b, out uint ab);

Parameters

ufuncs
UnicodeFunctions

The UnicodeFunctions instance invoking this callback.

a
UInt32

The first Unicode code point to compose.

b
UInt32

The second Unicode code point to compose.

ab
UInt32

When this method returns, contains the composed Unicode code point.

Return Value

true if the code points were successfully composed; otherwise, false.

Applies to