Google Apps Script API
    Preparing search index...

    A representation of an XML EntityReference node.

    interface EntityRef {
        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;
        getName(): string;
        getParentElement(): GoogleAppsScript.XML_Service.Element;
        getPublicId(): string;
        getSystemId(): string;
        getType(): GoogleAppsScript.XML_Service.ContentType;
        getValue(): string;
        setName(name: string): EntityRef;
        setPublicId(id: string): EntityRef;
        setSystemId(id: string): EntityRef;
    }

    Hierarchy (View Summary)

    Index

    Methods