MCPcopy Index your code
hub / github.com/PyQt5/PyQt / setLineWidth

Method setLineWidth

QProgressBar/ColourfulProgress.py:56–62  ·  view source on GitHub ↗

:type width: int :param width: 线条宽度

(self, width)

Source from the content-addressed store, hash-verified

54 self._fps = max(int(fps), 1) if isinstance(fps, (int, float)) else 60
55
56 def setLineWidth(self, width):
57 """
58 :type width: int
59 :param width: 线条宽度
60 """
61 self._lineWidth = max(int(width), 0) if isinstance(width,
62 (int, float)) else 50
63
64 def setRadius(self, radius):
65 """

Callers 1

__init__Method · 0.95

Calls

no outgoing calls

Tested by

no test coverage detected