DecomposeDelegate 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 decompose a Unicode code point into two code points using Unicode canonical decomposition.
public delegate bool DecomposeDelegate(UnicodeFunctions ufuncs, uint ab, out uint a, out uint b);
Parameters
- ufuncs
- UnicodeFunctions
The UnicodeFunctions instance invoking this callback.
- ab
- UInt32
The Unicode code point to decompose.
- a
- UInt32
When this method returns, contains the first component of the decomposition.
- b
- UInt32
When this method returns, contains the second component of the decomposition.
Return Value
true if the code point was successfully decomposed; otherwise, false.