1
0
Fork 0

Merge branch 'develop' into spellcheck-typos-fix

This commit is contained in:
Joost De Cock 2022-12-15 17:55:47 +01:00 committed by GitHub
commit f51e69d6af
No known key found for this signature in database
GPG key ID: 4AEE18F83AFDEB23
21 changed files with 367 additions and 232 deletions

View file

@ -46,9 +46,11 @@ Path path.attr(
## Notes
Methods like
[`Path.addClass`](/reference/api/path/addclass),
[`Path.setClass`](/reference/api/path/setclass),
[`Path.adddText`](/reference/api/path/addtext), and
[`Path.addClass`](/reference/api/path/addclass),
[`Path.setClass`](/reference/api/path/setclass),
[`Path.addText`](/reference/api/path/addtext), and
[`Path.setText`](/reference/api/path/settext)
all call this method under the hood.
See [Using Attributes](/howtos/code/attributes)
for information about custom Attributes that can be used with Paths.

View file

@ -12,7 +12,7 @@ Path new Path()
The Path constructor takes no arguments.
## Attributes
## Properties
A Path objects comes with the following properties:
@ -24,6 +24,10 @@ A Path objects comes with the following properties:
[Path.setHidden()](/reference/api/path/sethidden) for various methods that
allow setting this in a chainable way.
<Related>
See [Using Attributes](/howtos/code/attributes)
for information about custom Attributes that can be used with Paths.
</Related>
## Example
<Example caption="Example of the Path contructor">