Google Apps Script API
    Preparing search index...

    A representation of an XML DocumentType node.

    interface DocType {
        asCdata(): Cdata;
        asComment(): GoogleAppsScript.XML_Service.Comment;
        asDocType(): DocType;
        asElement(): GoogleAppsScript.XML_Service.Element;
        asEntityRef(): EntityRef;
        asProcessingInstruction(): ProcessingInstruction;
        asText(): GoogleAppsScript.XML_Service.Text;
        detach(): GoogleAppsScript.XML_Service.Content;
        getElementName(): string;
        getInternalSubset(): string;
        getParentElement(): GoogleAppsScript.XML_Service.Element;
        getPublicId(): string;
        getSystemId(): string;
        getType(): GoogleAppsScript.XML_Service.ContentType;
        getValue(): string;
        setElementName(name: string): DocType;
        setInternalSubset(data: string): DocType;
        setPublicId(id: string): DocType;
        setSystemId(id: string): DocType;
    }

    Hierarchy (View Summary)

    Index

    Methods