Frameprops Tool API¶
API for extending the Frameprops Tool, which allows you to customize how frame properties are displayed and categorized.
Core Classes¶
Classes¶
CategoryMatcher
¶
CategoryMatcher(
*,
name: str,
priority: int = 0,
order: int = 0,
exact_matches: set[str] = set(),
prefixes: set[str] = set(),
suffixes: set[str] = set(),
)
Defines how to match properties to a category.
Attributes¶
exact_matches
¶
Exact property keys that belong to this category.
prefixes
¶
Property key prefixes that belong to this category.
suffixes
¶
Property key suffixes that belong to this category.
Functions¶
matches
¶
Check if a property key matches this category.