예제 #1
0
파일: GrpCls.py 프로젝트: ylwb/epyk-ui
    def selection(self):
        """
    Description:
    ------------

    Related Pages:

      https://www.w3schools.com/howto/howto_css_text_selection.asp

    :rtype: CssStyleScrollbar.CssWebkitSelection
    """
        if not self.__selection:
            self.__selection = CssStyleScrollbar.CssWebkitSelection(
                self.htmlObj._report)
        return self.__selection
예제 #2
0
파일: GrpCls.py 프로젝트: epykure/epyk-ui
    def selection(self) -> CssStyleScrollbar.CssWebkitSelection:
        """
    Description:
    ------------
    Selection predefined style (background color based on the selected theme).

    Related Pages:

      https://www.w3schools.com/howto/howto_css_text_selection.asp

    :rtype: CssStyleScrollbar.CssWebkitSelection
    """
        if not self.__selection:
            self.__selection = CssStyleScrollbar.CssWebkitSelection(self.page)
        return self.__selection