ComposeDelegate Delegate
Definition
Important
Some information relates to prerelease product that may be substantially modified before it’s released. Microsoft makes no warranties, express or implied, with respect to the information provided here.
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.