PreviousNextIndex

Create( ) method (DECIMAL)


(Windows only; GUI for .NET only)

Use this set of Create( ) method overloads to initialize DECIMAL 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: DECIMAL

Access: PUBLIC STATIC

Applies to: Progress.Util.DecimalHelper class

Syntax
DecimalHelper:Create( method-parameters ) 

method-parameters

The following example uses this method to initialize a DECIMAL variable with the value 23.45, and then displays the result:

USING Progress.Util.* FROM ASSEMBLY. 
DEFINE VARIABLE aDecimal AS DECIMAL NO-UNDO. 
aDecimal = DecimalHelper:Create( 2345, 0, 0, FALSE, 2 ). 
Display aDecimal. 

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


OpenEdge Release 10.2B
Copyright © 2009 Progress Software Corporation
PreviousNextIndex