Advertisement
xunilk

QgsRasterShader Class (PyQGIS)

Aug 11th, 2014
342
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 2.23 KB | None | 0 0
  1. Python 2.7.4 (default, Apr 6 2013, 19:54:46) [MSC v.1500 32 bit (Intel)] on zeito
  2. ## Type help(iface) for more info and list of methods.
  3. help(QgsRasterShader)
  4. Help on class QgsRasterShader in module qgis.core:
  5.  
  6. class QgsRasterShader(sip.wrapper)
  7. | QgsRasterShader(float theMinimumValue=0, float theMaximumValue=255)
  8. | QgsRasterShader(QgsRasterShader)
  9. |
  10. | Method resolution order:
  11. | QgsRasterShader
  12. | sip.wrapper
  13. | sip.simplewrapper
  14. | __builtin__.object
  15. |
  16. | Methods defined here:
  17. |
  18. | maximumValue(...)
  19. | QgsRasterShader.maximumValue() -> float
  20. |
  21. | minimumValue(...)
  22. | QgsRasterShader.minimumValue() -> float
  23. |
  24. | rasterShaderFunction(...)
  25. | QgsRasterShader.rasterShaderFunction() -> QgsRasterShaderFunction
  26. |
  27. | readXML(...)
  28. | QgsRasterShader.readXML(QDomElement)
  29. |
  30. | setMaximumValue(...)
  31. | QgsRasterShader.setMaximumValue(float)
  32. |
  33. | setMinimumValue(...)
  34. | QgsRasterShader.setMinimumValue(float)
  35. |
  36. | setRasterShaderFunction(...)
  37. | QgsRasterShader.setRasterShaderFunction(QgsRasterShaderFunction)
  38. |
  39. | shade(...)
  40. | QgsRasterShader.shade(float) -> (bool, int, int, int, int)
  41. | QgsRasterShader.shade(float, float, float, float) -> (bool, int, int, int, int)
  42. |
  43. | writeXML(...)
  44. | QgsRasterShader.writeXML(QDomDocument, QDomElement)
  45. |
  46. | ----------------------------------------------------------------------
  47. | Data descriptors defined here:
  48. |
  49. | __weakref__
  50. | list of weak references to the object (if defined)
  51. |
  52. | ----------------------------------------------------------------------
  53. | Methods inherited from sip.simplewrapper:
  54. |
  55. | __init__(...)
  56. | x.__init__(...) initializes x; see help(type(x)) for signature
  57. |
  58. | ----------------------------------------------------------------------
  59. | Data descriptors inherited from sip.simplewrapper:
  60. |
  61. | __dict__
  62. |
  63. | ----------------------------------------------------------------------
  64. | Data and other attributes inherited from sip.simplewrapper:
  65. |
  66. | __new__ = <built-in method __new__ of sip.wrappertype object>
  67. | T.__new__(S, ...) -> a new object with type S, a subtype of T
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement