Files
create/src/Mod/TechDraw/App/DrawParametricTemplate.pyi
2025-09-02 08:25:37 -04:00

21 lines
506 B
Python

from typing import Any, Final
from Base.Metadata import export
from DrawTemplate import DrawTemplate
@export(
Include="Mod/TechDraw/App/DrawParametricTemplate.h",
Namespace="TechDraw",
FatherInclude="DrawTemplatePy.h",
)
class DrawParametricTemplate(DrawTemplate):
"""
Feature for creating and manipulating Technical Drawing Templates
"""
def drawLine(self) -> Any:
"""Draw a line"""
...
GeometryCount: Final[int]
"""Number of geometry in template"""