API Documentation > CorelDRAW > 2025-v26 > Application > IVGApplication
Application.cdrMixedDouble method
Constant value corresponding to a mixed (uneven) double
Syntax:
Function cdrMixedDouble() As Double
Remarks:
The cdrMixedDouble function returns a double value corresponding to a mixed (uneven) double. An undefined value is returned by some functions when ambiguity (different values) exists. For example, text that contains font characters of different sizes has mixed settings.
Examples:
The following VBA example checks whether the specified selection is a text object. If this text object contains characters with varying font sizes, it sets a uniform font size for the entire text object.
Sub MixedDouble()
Dim s As Shape
Set s = ActiveDocument.Selection.Shapes(1)
If s.Type = cdrTextShape Then
  If s.Text.FontProperties.Size = cdrMixedDouble Then

 s.Text.FontProperties.Size = 12
  End If
End If 
End Sub