Progress.Data.InputValue class
- Last Updated: January 18, 2024
- 1 minute read
- OpenEdge
- Version 12.8
- Documentation
(Windows only; GUI for .NET)
Provides indexers you can use to access the input value of the specified field in the current row of a table displayed in the bound .NET control.
Note: Using an instance of this class is analogous to using the INPUT-VALUE
attribute for a field value displayed in an ABL widget.
Serializable:
No
Constructors
This class does not contain a constructor.
Super Class
System.Object class from .NET
Interfaces
This class does not implement interfaces (beyond those it inherits from its base class).
Public Properties
This class does not contain properties (beyond those it inherits from its base class).
Public Methods
This class does not contain methods (beyond those it inherits from its base class).
Public Events
This class does not contain events (beyond those it inherits from its base class).
Notes
- The following code fragment illustrates how to use this class:
DEFINE VARIABLE myCustName AS CHARACTER NO-UNDO. /* InputValue indexer is 0-based */ myCustName = UNBOX(myBindingSource:InputValue[1]). IF myCustName EQ "Brown" THEN DO: MESSAGE "Invalid Customer Name". . . . END. - For information on the public class members inherited from the
System.Objectclass, refer to the .NET class library documentation.