System.VarCmplx.ComplexNumberSymbolBeforeImaginary

From RAD Studio API Documentation
Jump to: navigation, search

Delphi

ComplexNumberSymbolBeforeImaginary: Boolean = False;

C++

extern DELPHI_PACKAGE bool ComplexNumberSymbolBeforeImaginary;

Properties

Type Visibility Source Unit Parent
variable public
System.VarCmplx.pas
System.VarCmplx.hpp
System.VarCmplx System.VarCmplx

Description

Indicates the placement of the symbol that represents the imaginary part of a complex number.

Custom Variants that represent complex numbers use ComplexNumberSymbolBeforeImaginary when converting between complex values and strings.

When ComplexNumberSymbolBeforeImaginary is false (the default), the symbol appears after the imaginary part, as in '3.4 + 2i'.

When ComplexNumberSymbolBeforeImaginary is true, the symbol appears before the imaginary part, as in '3.4 + i2'.

See Also