Table of Contents

TRichString.Addition Operator

Concatenates two TRichString objects. Be careful that formats will be preserved from s1 to s2. If s1 ends up in red, s2 will start with red too. If you want to avoid this, make sure s2 has a font definition at character 0. ALSO, MAKE SURE YOU ARE CONCATENATING RICH STRINGS FROM THE SAME WORKBOOK, SO FONT INDEXES ARE SIMILAR.

Syntax

Namespace: FlexCel.Core

public static TRichString op_Addition(TRichString s1, TRichString s2)

Parameters

<-> Parameter Type Description
s1 TRichString First string to concatenate.
s2 TRichString Second string to concatenate.

See also