- %name(NamedColour) wxColour( const wxString& colorName);
- %name(ColourRGB) wxColour( unsigned long colRGB );
+
+ DocDeclStr(
+ unsigned char , Red(),
+ "Returns the red intensity.");
+
+ DocDeclStr(
+ unsigned char , Green(),
+ "Returns the green intensity.");
+
+ DocDeclStr(
+ unsigned char , Blue(),
+ "Returns the blue intensity.");
+
+ DocDeclStr(
+ bool , Ok(),
+ "Returns True if the colour object is valid (the colour has been\n"
+ "initialised with RGB values).");
+
+ DocDeclStr(
+ void , Set(unsigned char red, unsigned char green, unsigned char blue),
+ "Sets the RGB intensity values.");
+
+ DocDeclStrName(
+ void , Set(unsigned long colRGB),
+ "Sets the RGB intensity values from a packed RGB value.",
+ SetRGB);