Source code for ooodev.utils.data_type.window_title
from dataclasses import dataclass
[docs]@dataclass(frozen=True)
class WindowTitle:
"""Window Title Info"""
title: str
"""Window Title"""
is_regex: bool = False
"""Determines if title is treated as regular expression."""
class_name: str = "SALFRAME"