Difference between revisions of "FixPt Tips"
From FM Plugin Wikipedia
m (Number Tips moved to FixPt Tips) |
|
(No difference)
|
Revision as of 00:07, 12 July 2007
Contents |
This page is about editing and working with Numbers passed from FileMaker to your plugin.
FixPt Public Functions
- void AssignInt ( long int that )
- void AssignDouble ( double that )
- void AssignFixPt ( const FixPt &that )
- bool operator == ( const FixPt &that ) const
- bool operator != ( const FixPt &that ) const
- bool operator grtr ( const FixPt &that ) const
- bool operator grtr= ( const FixPt &that ) const
- bool operator less ( const FixPt &that ) const
- bool operator less= ( const FixPt &that ) const
- void Increment ( long int n )
- void Decrement ( long int n )
- void Negate ()
- void Add ( const FixPt &arg, FixPt &result ) const
- void Subtract ( const FixPt &arg, FixPt &result ) const
- void Multiply ( const FixPt &arg, FixPt &result ) const
- fmx::errcode Divide ( const FixPt &arg, FixPt &result ) const
- bool AsBool () const
- long int AsLong () const
- double AsFloat () const
- void operator delete ( void *obj )