func_maxgui_pixmapfromiconstrip.rst 758 B

1234567891011121314151617181920212223242526272829303132333435363738394041
  1. .. _func_maxgui_pixmapfromiconstrip:
  2. ===================
  3. PixmapFromIconStrip
  4. ===================
  5. PixmapFromIconStrip -
  6. Description
  7. ===========
  8. .. code-block:: blitzmax
  9. PixmapFromIconStrip:TPixmap(iconstrip:TIconStrip, index = -1)
  10. Returns a pixmap containing either a copy of the original icon-strip or just the specified icon.
  11. @iconstrip: The icon-strip to return a pixmap from.
  12. @index: The index (base 0) of the icon to extract. If this is negative, a %copy of the
  13. original pixmap used to create the iconstrip is returned.
  14. This function will return #Null if no iconstrip is passed, or if the icon index is invalid.
  15. See Also: #LoadIconStrip
  16. Parameters
  17. ==========
  18. Return Values
  19. =============
  20. Nothing.
  21. Examples
  22. ========
  23. See Also
  24. ========