Edit

Share via


DecomposeDelegate Delegate

Definition

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.

Applies to