Represents a collection of GraphicGradientStop values for use with CreateLinearGradientBrush and CreateRadialGradientBrush.
The stops are maintained in order of position. If two or more stops are added with the same position then the one(s) added later come later. This can be useful for producing discontinuities in the colour gradient.
Notice that this class is write-once, you can’t modify the stops once they had been added.
New in version 2.9.1.
__init__ |
Initializes the gradient stops with the given boundary colours. |
Add |
Add a new stop. |
GetCount |
Returns the number of stops. |
GetEndColour |
Returns the end colour. |
GetStartColour |
Returns the start colour. |
Item |
Returns the stop at the given index. |
SetEndColour |
Set the end colour to col. |
SetStartColour |
Set the start colour to col. |
__getitem__ |
|
__len__ |
Count |
See GetCount |
EndColour |
See GetEndColour and SetEndColour |
StartColour |
See GetStartColour and SetStartColour |
wx.
GraphicsGradientStops
(object)¶Possible constructors:
GraphicsGradientStops(startCol=TransparentColour,
endCol=TransparentColour)
Represents a collection of GraphicGradientStop values for use with CreateLinearGradientBrush and CreateRadialGradientBrush.
__init__
(self, startCol=TransparentColour, endCol=TransparentColour)¶Initializes the gradient stops with the given boundary colours.
Creates a wx.GraphicsGradientStops instance with start colour given by startCol and end colour given by endCol.
Parameters: |
---|
Add
(self, *args, **kw)¶Add a new stop.
Add (self, stop)
Parameters: | stop (wx.GraphicsGradientStop) – |
---|
Add (self, col, pos)
Parameters: |
|
---|
GetCount
(self)¶Returns the number of stops.
Return type: | int |
---|
Item
(self, n)¶Returns the stop at the given index.
Parameters: | n – The index, must be in [0 , GetCount ) range. |
---|---|
Return type: | wx.GraphicsGradientStop |
__getitem__
(self, n)¶__len__
(self)¶Return type: | SIP_SSIZE_T |
---|
EndColour
¶See GetEndColour
and SetEndColour
StartColour
¶See GetStartColour
and SetStartColour