NoteTag

Overview

NoteTag is a class in Aspose.Note FOSS for Python.

NoteTag.CreateYellowStar creates a yellow‑star tag, optionally assigning a label.

This class provides 4 methods for working with NoteTag objects in Python programs. Available methods include: CreateMusicalNote, CreateQuestionMark, CreateYellowStar, __init__. All exported members are accessible to any Python application after installing the Aspose.Note FOSS for Python package. Properties: CompletedTime, CreationTime, FontColor, Highlight, Icon, Label, and 1 more.

Properties

NameTypeAccessDescription
Labelstr | NoneReadGets the label.
Iconint | NoneReadGets the icon.
StatusTagStatusReadGets the status.
Highlightint | NoneReadGets the highlight.
CreationTimedatetime | NoneReadGets the creation time.
CompletedTimedatetime | NoneReadGets the completed time.
FontColorint | NoneReadGets the font color.

Methods

SignatureDescription
__init__(construction_token: object | None, Label: str | None, Icon: int | None, Status: TagStatus | int | str | None, Highlight: int | None, CreationTime: datetime | int | None, CompletedTime: datetime | int | None, FontColor: int | None)
CreateYellowStar(label: str | None)NoteTagCreates a yellow star tag with an optional label and returns the NoteTag
CreateQuestionMark(label: str | None)NoteTagCreates a question‑mark tag with an optional label and returns the NoteTag
CreateMusicalNote(label: str | None)NoteTagCreates a musical‑note tag with an optional label and returns the NoteTag

See Also