# encoding: utf-8
# module vtkmodules.vtkInteractionWidgets
# from C:\Users\xukai\Downloads\发票2\venv\Lib\site-packages\vtkmodules\vtkInteractionWidgets.cp311-win_amd64.pyd
# by generator 1.147
# no doc

# imports
import vtkmodules.vtkCommonCore as __vtkmodules_vtkCommonCore
import vtkmodules.vtkCommonExecutionModel as __vtkmodules_vtkCommonExecutionModel
import vtkmodules.vtkFiltersSources as __vtkmodules_vtkFiltersSources
import vtkmodules.vtkRenderingContext2D as __vtkmodules_vtkRenderingContext2D
import vtkmodules.vtkRenderingCore as __vtkmodules_vtkRenderingCore


from .vtkWidgetRepresentation import vtkWidgetRepresentation

class vtkSliderRepresentation(vtkWidgetRepresentation):
    """
    vtkSliderRepresentation - abstract class defines the representation
    for a vtkSliderWidget
    
    Superclass: vtkWidgetRepresentation
    
    This abstract class is used to specify how the vtkSliderWidget should
    interact with representations of the vtkSliderWidget. This class may
    be subclassed so that alternative representations can be created. The
    class defines an API, and a default implementation, that the
    vtkSliderWidget interacts with to render itself in the scene.
    
    @sa
    vtkSliderWidget
    """
    def GetCurrentT(self): # real signature unknown; restored from __doc__
        """
        GetCurrentT(self) -> float
        C++: virtual double GetCurrentT()
        
        Methods to interface with the vtkSliderWidget. Subclasses of this
        class actually do something.
        """
        return 0.0

    def GetEndCapLength(self): # real signature unknown; restored from __doc__
        """
        GetEndCapLength(self) -> float
        C++: virtual double GetEndCapLength()
        """
        return 0.0

    def GetEndCapLengthMaxValue(self): # real signature unknown; restored from __doc__
        """
        GetEndCapLengthMaxValue(self) -> float
        C++: virtual double GetEndCapLengthMaxValue()
        """
        return 0.0

    def GetEndCapLengthMinValue(self): # real signature unknown; restored from __doc__
        """
        GetEndCapLengthMinValue(self) -> float
        C++: virtual double GetEndCapLengthMinValue()
        """
        return 0.0

    def GetEndCapWidth(self): # real signature unknown; restored from __doc__
        """
        GetEndCapWidth(self) -> float
        C++: virtual double GetEndCapWidth()
        """
        return 0.0

    def GetEndCapWidthMaxValue(self): # real signature unknown; restored from __doc__
        """
        GetEndCapWidthMaxValue(self) -> float
        C++: virtual double GetEndCapWidthMaxValue()
        """
        return 0.0

    def GetEndCapWidthMinValue(self): # real signature unknown; restored from __doc__
        """
        GetEndCapWidthMinValue(self) -> float
        C++: virtual double GetEndCapWidthMinValue()
        """
        return 0.0

    def GetLabelFormat(self): # real signature unknown; restored from __doc__
        """
        GetLabelFormat(self) -> str
        C++: virtual char *GetLabelFormat()
        """
        return ""

    def GetLabelHeight(self): # real signature unknown; restored from __doc__
        """
        GetLabelHeight(self) -> float
        C++: virtual double GetLabelHeight()
        """
        return 0.0

    def GetLabelHeightMaxValue(self): # real signature unknown; restored from __doc__
        """
        GetLabelHeightMaxValue(self) -> float
        C++: virtual double GetLabelHeightMaxValue()
        """
        return 0.0

    def GetLabelHeightMinValue(self): # real signature unknown; restored from __doc__
        """
        GetLabelHeightMinValue(self) -> float
        C++: virtual double GetLabelHeightMinValue()
        """
        return 0.0

    def GetMaximumValue(self): # real signature unknown; restored from __doc__
        """
        GetMaximumValue(self) -> float
        C++: virtual double GetMaximumValue()
        """
        return 0.0

    def GetMinimumValue(self): # real signature unknown; restored from __doc__
        """
        GetMinimumValue(self) -> float
        C++: virtual double GetMinimumValue()
        """
        return 0.0

    def GetNumberOfGenerationsFromBase(self, type): # real signature unknown; restored from __doc__
        """
        GetNumberOfGenerationsFromBase(self, type:str) -> int
        C++: vtkIdType GetNumberOfGenerationsFromBase(const char *type)
            override;
        
        Given the name of a base class of this class type, return the
        distance of inheritance between this class type and the named
        class (how many generations of inheritance are there between this
        class and the named class). If the named class is not in this
        class's inheritance tree, return a negative value. Valid
        responses will always be nonnegative. This method works in
        combination with vtkTypeMacro found in vtkSetGet.h.
        """
        return 0

    def GetNumberOfGenerationsFromBaseType(self, type): # real signature unknown; restored from __doc__
        """
        GetNumberOfGenerationsFromBaseType(type:str) -> int
        C++: static vtkIdType GetNumberOfGenerationsFromBaseType(
            const char *type)
        
        Given a the name of a base class of this class type, return the
        distance of inheritance between this class type and the named
        class (how many generations of inheritance are there between this
        class and the named class). If the named class is not in this
        class's inheritance tree, return a negative value. Valid
        responses will always be nonnegative. This method works in
        combination with vtkTypeMacro found in vtkSetGet.h.
        """
        return 0

    def GetPickedT(self): # real signature unknown; restored from __doc__
        """
        GetPickedT(self) -> float
        C++: virtual double GetPickedT()
        """
        return 0.0

    def GetShowSliderLabel(self): # real signature unknown; restored from __doc__
        """
        GetShowSliderLabel(self) -> int
        C++: virtual vtkTypeBool GetShowSliderLabel()
        """
        return 0

    def GetSliderLength(self): # real signature unknown; restored from __doc__
        """
        GetSliderLength(self) -> float
        C++: virtual double GetSliderLength()
        """
        return 0.0

    def GetSliderLengthMaxValue(self): # real signature unknown; restored from __doc__
        """
        GetSliderLengthMaxValue(self) -> float
        C++: virtual double GetSliderLengthMaxValue()
        """
        return 0.0

    def GetSliderLengthMinValue(self): # real signature unknown; restored from __doc__
        """
        GetSliderLengthMinValue(self) -> float
        C++: virtual double GetSliderLengthMinValue()
        """
        return 0.0

    def GetSliderWidth(self): # real signature unknown; restored from __doc__
        """
        GetSliderWidth(self) -> float
        C++: virtual double GetSliderWidth()
        """
        return 0.0

    def GetSliderWidthMaxValue(self): # real signature unknown; restored from __doc__
        """
        GetSliderWidthMaxValue(self) -> float
        C++: virtual double GetSliderWidthMaxValue()
        """
        return 0.0

    def GetSliderWidthMinValue(self): # real signature unknown; restored from __doc__
        """
        GetSliderWidthMinValue(self) -> float
        C++: virtual double GetSliderWidthMinValue()
        """
        return 0.0

    def GetTitleHeight(self): # real signature unknown; restored from __doc__
        """
        GetTitleHeight(self) -> float
        C++: virtual double GetTitleHeight()
        """
        return 0.0

    def GetTitleHeightMaxValue(self): # real signature unknown; restored from __doc__
        """
        GetTitleHeightMaxValue(self) -> float
        C++: virtual double GetTitleHeightMaxValue()
        """
        return 0.0

    def GetTitleHeightMinValue(self): # real signature unknown; restored from __doc__
        """
        GetTitleHeightMinValue(self) -> float
        C++: virtual double GetTitleHeightMinValue()
        """
        return 0.0

    def GetTitleText(self): # real signature unknown; restored from __doc__
        """
        GetTitleText(self) -> str
        C++: virtual const char *GetTitleText()
        """
        return ""

    def GetTubeWidth(self): # real signature unknown; restored from __doc__
        """
        GetTubeWidth(self) -> float
        C++: virtual double GetTubeWidth()
        """
        return 0.0

    def GetTubeWidthMaxValue(self): # real signature unknown; restored from __doc__
        """
        GetTubeWidthMaxValue(self) -> float
        C++: virtual double GetTubeWidthMaxValue()
        """
        return 0.0

    def GetTubeWidthMinValue(self): # real signature unknown; restored from __doc__
        """
        GetTubeWidthMinValue(self) -> float
        C++: virtual double GetTubeWidthMinValue()
        """
        return 0.0

    def GetValue(self): # real signature unknown; restored from __doc__
        """
        GetValue(self) -> float
        C++: virtual double GetValue()
        """
        return 0.0

    def IsA(self, type): # real signature unknown; restored from __doc__
        """
        IsA(self, type:str) -> int
        C++: vtkTypeBool IsA(const char *type) override;
        
        Return 1 if this class is the same type of (or a subclass of) the
        named class. Returns 0 otherwise. This method works in
        combination with vtkTypeMacro found in vtkSetGet.h.
        """
        return 0

    def IsTypeOf(self, type): # real signature unknown; restored from __doc__
        """
        IsTypeOf(type:str) -> int
        C++: static vtkTypeBool IsTypeOf(const char *type)
        
        Return 1 if this class type is the same type of (or a subclass
        of) the named class. Returns 0 otherwise. This method works in
        combination with vtkTypeMacro found in vtkSetGet.h.
        """
        return 0

    def NewInstance(self): # real signature unknown; restored from __doc__
        """
        NewInstance(self) -> vtkSliderRepresentation
        C++: vtkSliderRepresentation *NewInstance()
        """
        return vtkSliderRepresentation

    def SafeDownCast(self, o): # real signature unknown; restored from __doc__
        """
        SafeDownCast(o:vtkObjectBase) -> vtkSliderRepresentation
        C++: static vtkSliderRepresentation *SafeDownCast(
            vtkObjectBase *o)
        """
        return vtkSliderRepresentation

    def SetEndCapLength(self, _arg): # real signature unknown; restored from __doc__
        """
        SetEndCapLength(self, _arg:float) -> None
        C++: virtual void SetEndCapLength(double _arg)
        
        Specify the length of each end cap (in normalized coordinates
        [0.0,0.25]). By default the length is 0.025. If the end cap
        length is set to 0.0, then the end cap will not display at all.
        """
        pass

    def SetEndCapWidth(self, _arg): # real signature unknown; restored from __doc__
        """
        SetEndCapWidth(self, _arg:float) -> None
        C++: virtual void SetEndCapWidth(double _arg)
        
        Specify the width of each end cap (in normalized coordinates
        [0.0,0.25]). By default the width is twice the tube width.
        """
        pass

    def SetLabelFormat(self, _arg): # real signature unknown; restored from __doc__
        """
        SetLabelFormat(self, _arg:str) -> None
        C++: virtual void SetLabelFormat(const char *_arg)
        
        Set/Get the format with which to print the slider value.
        """
        pass

    def SetLabelHeight(self, _arg): # real signature unknown; restored from __doc__
        """
        SetLabelHeight(self, _arg:float) -> None
        C++: virtual void SetLabelHeight(double _arg)
        
        Specify the relative height of the label as compared to the
        length of the slider.
        """
        pass

    def SetMaximumValue(self, value): # real signature unknown; restored from __doc__
        """
        SetMaximumValue(self, value:float) -> None
        C++: void SetMaximumValue(double value)
        
        Set the current maximum value that the slider can take. Setting
        the maximum value less than the minimum value will cause the
        minimum value to change to (maximum value - 1).
        """
        pass

    def SetMinimumValue(self, value): # real signature unknown; restored from __doc__
        """
        SetMinimumValue(self, value:float) -> None
        C++: void SetMinimumValue(double value)
        
        Set the current minimum value that the slider can take. Setting
        the minimum value greater than the maximum value will cause the
        maximum value to grow to (minimum value + 1).
        """
        pass

    def SetShowSliderLabel(self, _arg): # real signature unknown; restored from __doc__
        """
        SetShowSliderLabel(self, _arg:int) -> None
        C++: virtual void SetShowSliderLabel(vtkTypeBool _arg)
        
        Indicate whether the slider text label should be displayed. This
        is a number corresponding to the current Value of this widget.
        """
        pass

    def SetSliderLength(self, _arg): # real signature unknown; restored from __doc__
        """
        SetSliderLength(self, _arg:float) -> None
        C++: virtual void SetSliderLength(double _arg)
        
        Specify the length of the slider shape (in normalized display
        coordinates [0.01,0.5]). The slider length by default is 0.05.
        """
        pass

    def SetSliderWidth(self, _arg): # real signature unknown; restored from __doc__
        """
        SetSliderWidth(self, _arg:float) -> None
        C++: virtual void SetSliderWidth(double _arg)
        
        Set the width of the slider in the directions orthogonal to the
        slider axis. Using this it is possible to create ellipsoidal and
        hockey puck sliders (in some subclasses). By default the width is
        0.05.
        """
        pass

    def SetTitleHeight(self, _arg): # real signature unknown; restored from __doc__
        """
        SetTitleHeight(self, _arg:float) -> None
        C++: virtual void SetTitleHeight(double _arg)
        
        Specify the relative height of the title as compared to the
        length of the slider.
        """
        pass

    def SetTitleText(self, __a): # real signature unknown; restored from __doc__
        """
        SetTitleText(self, __a:str) -> None
        C++: virtual void SetTitleText(const char *)
        
        Specify the label text for this widget. If the value is not set,
        or set to the empty string "", then the label text is not
        displayed.
        """
        pass

    def SetTubeWidth(self, _arg): # real signature unknown; restored from __doc__
        """
        SetTubeWidth(self, _arg:float) -> None
        C++: virtual void SetTubeWidth(double _arg)
        
        Set the width of the tube (in normalized display coordinates) on
        which the slider moves. By default the width is 0.05.
        """
        pass

    def SetValue(self, value): # real signature unknown; restored from __doc__
        """
        SetValue(self, value:float) -> None
        C++: void SetValue(double value)
        
        Specify the current value for the widget. The value should lie
        between the minimum and maximum values.
        """
        pass

    def ShowSliderLabelOff(self): # real signature unknown; restored from __doc__
        """
        ShowSliderLabelOff(self) -> None
        C++: virtual void ShowSliderLabelOff()
        """
        pass

    def ShowSliderLabelOn(self): # real signature unknown; restored from __doc__
        """
        ShowSliderLabelOn(self) -> None
        C++: virtual void ShowSliderLabelOn()
        """
        pass

    def __delattr__(self, *args, **kwargs): # real signature unknown
        """ Implement delattr(self, name). """
        pass

    def __getattribute__(self, *args, **kwargs): # real signature unknown
        """ Return getattr(self, name). """
        pass

    def __init__(self, *args, **kwargs): # real signature unknown
        pass

    @staticmethod # known case of __new__
    def __new__(*args, **kwargs): # real signature unknown
        """ Create and return a new object.  See help(type) for accurate signature. """
        pass

    def __repr__(self, *args, **kwargs): # real signature unknown
        """ Return repr(self). """
        pass

    def __setattr__(self, *args, **kwargs): # real signature unknown
        """ Implement setattr(self, name, value). """
        pass

    def __str__(self, *args, **kwargs): # real signature unknown
        """ Return str(self). """
        pass

    __this__ = property(lambda self: object(), lambda self, v: None, lambda self: None)  # default
    """Pointer to the C++ object."""


    InteractionStateType = None # (!) real value is "<class 'vtkmodules.vtkInteractionWidgets.vtkSliderRepresentation.InteractionStateType'>"
    LeftCap = 2
    Outside = 0
    RightCap = 3
    Slider = 4
    Tube = 1
    __dict__ = None # (!) real value is "mappingproxy({'__vtkname__': 'vtkSliderRepresentation', 'IsTypeOf': <method 'IsTypeOf' of 'vtkmodules.vtkInteractionWidgets.vtkSliderRepresentation' objects>, 'IsA': <method 'IsA' of 'vtkmodules.vtkInteractionWidgets.vtkSliderRepresentation' objects>, 'SafeDownCast': <method 'SafeDownCast' of 'vtkmodules.vtkInteractionWidgets.vtkSliderRepresentation' objects>, 'NewInstance': <method 'NewInstance' of 'vtkmodules.vtkInteractionWidgets.vtkSliderRepresentation' objects>, 'GetNumberOfGenerationsFromBaseType': <method 'GetNumberOfGenerationsFromBaseType' of 'vtkmodules.vtkInteractionWidgets.vtkSliderRepresentation' objects>, 'GetNumberOfGenerationsFromBase': <method 'GetNumberOfGenerationsFromBase' of 'vtkmodules.vtkInteractionWidgets.vtkSliderRepresentation' objects>, 'SetValue': <method 'SetValue' of 'vtkmodules.vtkInteractionWidgets.vtkSliderRepresentation' objects>, 'GetValue': <method 'GetValue' of 'vtkmodules.vtkInteractionWidgets.vtkSliderRepresentation' objects>, 'SetMinimumValue': <method 'SetMinimumValue' of 'vtkmodules.vtkInteractionWidgets.vtkSliderRepresentation' objects>, 'GetMinimumValue': <method 'GetMinimumValue' of 'vtkmodules.vtkInteractionWidgets.vtkSliderRepresentation' objects>, 'SetMaximumValue': <method 'SetMaximumValue' of 'vtkmodules.vtkInteractionWidgets.vtkSliderRepresentation' objects>, 'GetMaximumValue': <method 'GetMaximumValue' of 'vtkmodules.vtkInteractionWidgets.vtkSliderRepresentation' objects>, 'SetSliderLength': <method 'SetSliderLength' of 'vtkmodules.vtkInteractionWidgets.vtkSliderRepresentation' objects>, 'GetSliderLengthMinValue': <method 'GetSliderLengthMinValue' of 'vtkmodules.vtkInteractionWidgets.vtkSliderRepresentation' objects>, 'GetSliderLengthMaxValue': <method 'GetSliderLengthMaxValue' of 'vtkmodules.vtkInteractionWidgets.vtkSliderRepresentation' objects>, 'GetSliderLength': <method 'GetSliderLength' of 'vtkmodules.vtkInteractionWidgets.vtkSliderRepresentation' objects>, 'SetSliderWidth': <method 'SetSliderWidth' of 'vtkmodules.vtkInteractionWidgets.vtkSliderRepresentation' objects>, 'GetSliderWidthMinValue': <method 'GetSliderWidthMinValue' of 'vtkmodules.vtkInteractionWidgets.vtkSliderRepresentation' objects>, 'GetSliderWidthMaxValue': <method 'GetSliderWidthMaxValue' of 'vtkmodules.vtkInteractionWidgets.vtkSliderRepresentation' objects>, 'GetSliderWidth': <method 'GetSliderWidth' of 'vtkmodules.vtkInteractionWidgets.vtkSliderRepresentation' objects>, 'SetTubeWidth': <method 'SetTubeWidth' of 'vtkmodules.vtkInteractionWidgets.vtkSliderRepresentation' objects>, 'GetTubeWidthMinValue': <method 'GetTubeWidthMinValue' of 'vtkmodules.vtkInteractionWidgets.vtkSliderRepresentation' objects>, 'GetTubeWidthMaxValue': <method 'GetTubeWidthMaxValue' of 'vtkmodules.vtkInteractionWidgets.vtkSliderRepresentation' objects>, 'GetTubeWidth': <method 'GetTubeWidth' of 'vtkmodules.vtkInteractionWidgets.vtkSliderRepresentation' objects>, 'SetEndCapLength': <method 'SetEndCapLength' of 'vtkmodules.vtkInteractionWidgets.vtkSliderRepresentation' objects>, 'GetEndCapLengthMinValue': <method 'GetEndCapLengthMinValue' of 'vtkmodules.vtkInteractionWidgets.vtkSliderRepresentation' objects>, 'GetEndCapLengthMaxValue': <method 'GetEndCapLengthMaxValue' of 'vtkmodules.vtkInteractionWidgets.vtkSliderRepresentation' objects>, 'GetEndCapLength': <method 'GetEndCapLength' of 'vtkmodules.vtkInteractionWidgets.vtkSliderRepresentation' objects>, 'SetEndCapWidth': <method 'SetEndCapWidth' of 'vtkmodules.vtkInteractionWidgets.vtkSliderRepresentation' objects>, 'GetEndCapWidthMinValue': <method 'GetEndCapWidthMinValue' of 'vtkmodules.vtkInteractionWidgets.vtkSliderRepresentation' objects>, 'GetEndCapWidthMaxValue': <method 'GetEndCapWidthMaxValue' of 'vtkmodules.vtkInteractionWidgets.vtkSliderRepresentation' objects>, 'GetEndCapWidth': <method 'GetEndCapWidth' of 'vtkmodules.vtkInteractionWidgets.vtkSliderRepresentation' objects>, 'SetTitleText': <method 'SetTitleText' of 'vtkmodules.vtkInteractionWidgets.vtkSliderRepresentation' objects>, 'GetTitleText': <method 'GetTitleText' of 'vtkmodules.vtkInteractionWidgets.vtkSliderRepresentation' objects>, 'SetLabelFormat': <method 'SetLabelFormat' of 'vtkmodules.vtkInteractionWidgets.vtkSliderRepresentation' objects>, 'GetLabelFormat': <method 'GetLabelFormat' of 'vtkmodules.vtkInteractionWidgets.vtkSliderRepresentation' objects>, 'SetLabelHeight': <method 'SetLabelHeight' of 'vtkmodules.vtkInteractionWidgets.vtkSliderRepresentation' objects>, 'GetLabelHeightMinValue': <method 'GetLabelHeightMinValue' of 'vtkmodules.vtkInteractionWidgets.vtkSliderRepresentation' objects>, 'GetLabelHeightMaxValue': <method 'GetLabelHeightMaxValue' of 'vtkmodules.vtkInteractionWidgets.vtkSliderRepresentation' objects>, 'GetLabelHeight': <method 'GetLabelHeight' of 'vtkmodules.vtkInteractionWidgets.vtkSliderRepresentation' objects>, 'SetTitleHeight': <method 'SetTitleHeight' of 'vtkmodules.vtkInteractionWidgets.vtkSliderRepresentation' objects>, 'GetTitleHeightMinValue': <method 'GetTitleHeightMinValue' of 'vtkmodules.vtkInteractionWidgets.vtkSliderRepresentation' objects>, 'GetTitleHeightMaxValue': <method 'GetTitleHeightMaxValue' of 'vtkmodules.vtkInteractionWidgets.vtkSliderRepresentation' objects>, 'GetTitleHeight': <method 'GetTitleHeight' of 'vtkmodules.vtkInteractionWidgets.vtkSliderRepresentation' objects>, 'SetShowSliderLabel': <method 'SetShowSliderLabel' of 'vtkmodules.vtkInteractionWidgets.vtkSliderRepresentation' objects>, 'GetShowSliderLabel': <method 'GetShowSliderLabel' of 'vtkmodules.vtkInteractionWidgets.vtkSliderRepresentation' objects>, 'ShowSliderLabelOn': <method 'ShowSliderLabelOn' of 'vtkmodules.vtkInteractionWidgets.vtkSliderRepresentation' objects>, 'ShowSliderLabelOff': <method 'ShowSliderLabelOff' of 'vtkmodules.vtkInteractionWidgets.vtkSliderRepresentation' objects>, 'GetCurrentT': <method 'GetCurrentT' of 'vtkmodules.vtkInteractionWidgets.vtkSliderRepresentation' objects>, 'GetPickedT': <method 'GetPickedT' of 'vtkmodules.vtkInteractionWidgets.vtkSliderRepresentation' objects>, 'InteractionStateType': <class 'vtkmodules.vtkInteractionWidgets.vtkSliderRepresentation.InteractionStateType'>, 'Outside': 0, 'Tube': 1, 'LeftCap': 2, 'RightCap': 3, 'Slider': 4, '__new__': <built-in method __new__ of type object at 0x00007FF81D661CB0>, '__repr__': <slot wrapper '__repr__' of 'vtkmodules.vtkInteractionWidgets.vtkSliderRepresentation' objects>, '__str__': <slot wrapper '__str__' of 'vtkmodules.vtkInteractionWidgets.vtkSliderRepresentation' objects>, '__getattribute__': <slot wrapper '__getattribute__' of 'vtkmodules.vtkInteractionWidgets.vtkSliderRepresentation' objects>, '__setattr__': <slot wrapper '__setattr__' of 'vtkmodules.vtkInteractionWidgets.vtkSliderRepresentation' objects>, '__delattr__': <slot wrapper '__delattr__' of 'vtkmodules.vtkInteractionWidgets.vtkSliderRepresentation' objects>, '__dict__': <attribute '__dict__' of 'vtkmodules.vtkInteractionWidgets.vtkSliderRepresentation' objects>, '__this__': <attribute '__this__' of 'vtkmodules.vtkInteractionWidgets.vtkSliderRepresentation' objects>, '__doc__': 'vtkSliderRepresentation - abstract class defines the representation\\nfor a vtkSliderWidget\\n\\nSuperclass: vtkWidgetRepresentation\\n\\nThis abstract class is used to specify how the vtkSliderWidget should\\ninteract with representations of the vtkSliderWidget. This class may\\nbe subclassed so that alternative representations can be created. The\\nclass defines an API, and a default implementation, that the\\nvtkSliderWidget interacts with to render itself in the scene.\\n\\n@sa\\nvtkSliderWidget\\n\\n'})"
    __vtkname__ = 'vtkSliderRepresentation'


