Suffix Property

What to append after each segment delimiter.

Syntax

ANSI (Cross Platform)
int GetSuffix();
int SetSuffix(int iSuffix); Unicode (Windows) INT GetSuffix();
INT SetSuffix(INT iSuffix);

Possible Values

SUFFIX_NONE(0), 
SUFFIX_CR(1),
SUFFIX_LF(2),
SUFFIX_CRLF(3)
@property (nonatomic,readwrite,assign,getter=suffix,setter=setSuffix:) int suffix;
- (int)suffix;
- (void)setSuffix:(int)newSuffix;

Possible Values

SUFFIX_NONE(0), 
SUFFIX_CR(1),
SUFFIX_LF(2),
SUFFIX_CRLF(3)
#define PID_EDIFACTWRITER_SUFFIX 5

IPWORKSEDI_EXTERNAL void* IPWORKSEDI_CALL IPWorksEDI_EDIFACTWriter_Get(void *lpObj, int propid, int arridx, int *lpcbVal, int64 *lpllVal);
IPWORKSEDI_EXTERNAL int IPWORKSEDI_CALL IPWorksEDI_EDIFACTWriter_Set(void *lpObj, int propid, int arridx, const void *val, int cbVal);

Default Value

0

Remarks

If Suffix is different from suffixNone, trailing (suffix) characters are appended after each segment delimiter. This is useful if you want to have a carriage return/line feed after each segment to make the document more readable.

This property is not available at design time.

Data Type

Integer

Copyright (c) 2022 /n software inc. - All rights reserved.
IPWorks EDI 2020 C++ Edition - Version 20.0 [Build 8203]