+ def GetIconOfExactSize(*args, **kwargs):
+ """
+ GetIconOfExactSize(self, Size size) -> Icon
+
+ Returns the icon exactly of the specified size or wxNullIcon if no
+ icon of exactly given size are available.
+ """
+ return _gdi_.IconBundle_GetIconOfExactSize(*args, **kwargs)
+
+ def GetIconCount(*args, **kwargs):
+ """
+ GetIconCount(self) -> size_t
+
+ return the number of available icons
+ """
+ return _gdi_.IconBundle_GetIconCount(*args, **kwargs)
+
+ def GetIconByIndex(*args, **kwargs):
+ """
+ GetIconByIndex(self, size_t n) -> Icon
+
+ Return the icon at index (must be < GetIconCount())
+ """
+ return _gdi_.IconBundle_GetIconByIndex(*args, **kwargs)
+
+ def IsEmpty(*args, **kwargs):
+ """
+ IsEmpty(self) -> bool
+
+ Check if we have any icons at all
+ """
+ return _gdi_.IconBundle_IsEmpty(*args, **kwargs)
+