Difference between revisions of "Text Style Tips"

From FM Plugin Wikipedia
Jump to: navigation, search
(New page: {| align="right" | __TOC__ |} This page is about editing and working with Text Styles passed from FileMaker to your plugin.)
 
Line 4: Line 4:
  
 
This page is about editing and working with Text Styles passed from FileMaker to your plugin.
 
This page is about editing and working with Text Styles passed from FileMaker to your plugin.
 +
 +
 +
=Text Style Public Functions=
 +
*[[void SetRed ( ColorChannel r )]]
 +
*[[void SetGreen ( ColorChannel g )]]
 +
*[[void SetBlue ( ColorChannel b )]]
 +
*[[void SetAlpha ( ColorChannel a )]]
 +
 +
 +
*[[ColorChannel GetRed () const]]
 +
*[[ColorChannel GetGreen () const]]
 +
*[[ColorChannel GetBlue () const]]
 +
*[[ColorChannel GetAlpha () const]]
 +
 +
 +
*[[ColorChannel16 GetRedUpsample () const]]
 +
*[[ColorChannel16 GetGreenUpsample () const]]
 +
*[[ColorChannel16 GetBlueUpsample () const]]
 +
*[[ColorChannel16 GetAlphaUpsample () const]]
 +
 +
 +
*[[Color &operator = ( const Color &rhs )]]
 +
*[[bool operator == ( const Color &rhs ) const]]
 +
*[[bool operator != ( const Color &rhs ) const]]
 +
 +
 +
*[[static const Color &White () throw ()]]
 +
*[[static const Color &Black () throw ()]]
 +
 +
 +
*[[void operator delete ( void *obj )]]

Revision as of 23:59, 11 July 2007

This page is about editing and working with Text Styles passed from FileMaker to your plugin.


Text Style Public Functions