PreviousNextIndex

Create( ) method (CHARACTER)


(Windows only; GUI for .NET only)

Use this set of Create( ) method overloads to initialize CHARACTER values in ABL.

Note: This method is used primarily by the Visual Designer during code generation. You should not expect to use this method directly.

Return type: CHARACTER

Access: PUBLIC STATIC

Applies to: Progress.Util.StringHelper class

Syntax
StringHelper:Create( method-parameters ) 

method-parameters

The following example uses this method to initialize a CHARACTER variable with the string "AAAAAAA", and then displays the result:

USING Progress.Util.* FROM ASSEMBLY. 
DEFINE VARIABLE aString AS CHARACTER NO-UNDO. 
aString = StringHelper:Create( "A", 7 ). 
Display aString. 

See also: Create( ) method (DATETIME), Create( ) method (DECIMAL)


OpenEdge Release 10.2B
Copyright © 2009 Progress Software Corporation
PreviousNextIndex