Chapter Contents

Previous

Next
Text Viewer: _getDelimiters

Text Viewer: _getDelimiters



Returns an SCL list of delimiters


Syntax
Details
Example

Syntax

CALL NOTIFY (viewer-name, '_getDelimiters', delimiters-list);

Argument Type Description
delimiters-list
N returns the identifier of an SCL list containing the current delimiters


Details

The delimiters list controls the word returned by the _getInfo method. The default delimiters list contains only a space, so by default _getInfo returns space-delimited words.


Example

If the _setDelimiters method has never been called, the _getDELIMITERS method returns the default delimiter list:

delimiters=makelist();
call notify('textview', '_get_delimiters_',
             delimiters);
call putlist(delimiters);

The default delimiter list contains a space:

DELIMITERS = ( " " )


Chapter Contents

Previous

Next

Top of Page

Copyright 1999 by SAS Institute Inc., Cary, NC, USA. All rights reserved.