XmStringSegmentCreate(3Xm) — UNIX Programmer’s Manual
NAME
XmStringSegmentCreate — a compound string function that creates a compound string.
SYNOPSIS
#include <Xm/Xm.h> XmString XmStringSegmentCreate (text, charset, direction, separator)
char∗ text;
XmStringCharSet charset;
XmStringDirection direction;
Booleanseparator;
DESCRIPTION
XmStringSegmentCreate is a high-level function which assembles a compound string consisting of a character set identifier, a direction component, a text component, and an optional separator component.
textSpecifies a pointer to a null terminated string.
charsetSpecifies the character set identifier to be associated with the text. This can be XmSTRING_DEFAULT_CHARSET.
directionSpecifies the direction of the text.
separatorSpecifies separator addition. If False, the compound string will not have a separator at the end. If True, a separator will immediately follow the text component.
RETURN VALUE
Returns a new compound string.
RELATED INFORMATION
7th Edition