🔍 Code Extractor

class ListTemplateType

Maturity: 32

Specifies the type of a list template. A set of predefined values are specified in [MS-WSSTS] section 2.7.

File:
/tf/active/vicechatdev/SPFCsync/venv/lib64/python3.11/site-packages/office365/sharepoint/lists/template_type.py
Lines:
1 - 126
Complexity:
moderate

Purpose

Specifies the type of a list template. A set of predefined values are specified in [MS-WSSTS] section 2.7.

Source Code

class ListTemplateType:
    """Specifies the type of a list template. A set of predefined values are specified in [MS-WSSTS] section 2.7."""

    def __init__(self):
        pass

    InvalidType = -1

    NoListTemplate = 0
    """Specifies no template applies."""

    GenericList = 100
    """Specifies a basic list"""

    DocumentLibrary = 101
    """Specifies a Document library"""

    Survey = 102
    """Specifies a survey list."""

    Links = 103
    """Specifies a links list."""

    Announcements = 104
    """Specifies an announcements list."""

    Contacts = 105
    """Specifies a contacts list."""

    Events = 106
    """Specifies a calendar list."""

    Tasks = 107
    """Specifies a task list."""

    DiscussionBoard = 108
    """Specifies a discussion board."""

    PictureLibrary = 109
    """Specifies a picture library."""

    DataSources = 110
    """Specifies a list of data sources for a site """

    WebTemplateCatalog = 111
    """Specifies a list template gallery."""

    UserInformation = 112
    """Specifies a user information list"""

    WebPartCatalog = 113
    """"""

    ListTemplateCatalog = 114

    XMLForm = 115

    MasterPageCatalog = 116

    NoCodeWorkflows = 117

    WorkflowProcess = 118

    WebPageLibrary = 119

    CustomGrid = 120

    SolutionCatalog = 121

    NoCodePublic = 122

    ThemeCatalog = 123

    DesignCatalog = 124

    AppDataCatalog = 125

    DataConnectionLibrary = 130

    WorkflowHistory = 140

    GanttTasks = 150

    HelpLibrary = 151

    AccessRequest = 160

    TasksWithTimelineAndHierarchy = 171

    MaintenanceLogs = 175

    Meetings = 200

    Agenda = 201

    MeetingUser = 202

    Decision = 204

    MeetingObjective = 207

    TextBox = 210

    ThingsToBring = 211

    HomePageLibrary = 212

    Posts = 301

    Comments = 302

    Categories = 303

    Facility = 402

    Whereabouts = 403

    CallTrack = 404

    Circulation = 405

    Timecard = 420

    Holidays = 421

    IMEDic = 499

Parameters

Name Type Default Kind
bases - -

Parameter Details

bases: Parameter of type

Return Value

Returns unspecified type

Class Interface

Methods

__init__(self)

Purpose: Internal method: init

Returns: None

Usage Example

# Example usage:
# result = ListTemplateType(bases)

Similar Components

AI-powered semantic similarity - components with related functionality:

  • class DocumentTemplateType 68.7% similar

    An enumeration class that defines constants for document template types used when creating new lists, supporting Word and Excel templates.

    From: /tf/active/vicechatdev/SPFCsync/venv/lib64/python3.11/site-packages/office365/sharepoint/lists/document_template_type.py
  • class ListTemplate 64.3% similar

    Represents a SharePoint list definition or list template that defines the fields and views for a list, providing access to list schema and metadata.

    From: /tf/active/vicechatdev/SPFCsync/venv/lib64/python3.11/site-packages/office365/sharepoint/lists/template.py
  • class ListTemplateCollection 59.9% similar

    A collection class that manages and provides access to SharePoint list templates, extending EntityCollection to handle multiple ListTemplate instances.

    From: /tf/active/vicechatdev/SPFCsync/venv/lib64/python3.11/site-packages/office365/sharepoint/lists/template_collection.py
  • class TemplateFileType 57.6% similar

    An enumeration-style class that defines constants representing different types of ghosted file templates used in SharePoint or similar content management systems.

    From: /tf/active/vicechatdev/SPFCsync/venv/lib64/python3.11/site-packages/office365/sharepoint/pages/template_file_type.py
  • class ListCollection 54.2% similar

    Specifies a collection of lists.

    From: /tf/active/vicechatdev/SPFCsync/venv/lib64/python3.11/site-packages/office365/sharepoint/lists/collection.py
← Back to Browse