Source code for LOGS.Entities.LabNotebookEntryContent.EntryContentTable

from LOGS.Entities.LabNotebookEntryContent.EntryContentItem import EntryContentItem
from LOGS.Entities.LabNotebookEntryContent.IEntryContentWithAttribute import (
    IEntryContentWithAttribute,
)
from LOGS.Entities.LabNotebookEntryContent.IEntryContentWithContent import (
    IEntryContentWithContent,
)
from LOGS.Entities.LabNotebookEntryContent.TextMarkAtributes import BasicAttribute


[docs] class EntryContentTable( EntryContentItem, IEntryContentWithContent, IEntryContentWithAttribute[BasicAttribute], ): _attrType = BasicAttribute _type = "table"