Product Documentation

c-treeDB API for C++ - Developers Guide

Previous Topic

Next Topic

CTString::operator =, +, +=

Syntax

CTString& operator=(const CTString& str)

CTString& operator=(const pTEXT str)

CTString& operator+=(const CTString& str)

CTString operator+(const CTString& lhs, const CTString& rhs)

CTString operator+(const pTEXT lhs, const CTString& rhs)

Parameters

  • str [in] The CTString object or text to be assigned or concatenated to form the new CTString object
  • lhs [in] The left hand side string or text to be concatenated
  • rhs [in] The right hand side string to be concatenated

Description

Assigns or concatenates a string or text to form a CTString object

Return

The new CTString object

TOCIndex