angular-package
TwitterGitHub
Text
Text
  • Introduction
  • Benefits
  • Getting started
    • General concepts
    • Skeleton
    • Installation
    • Public API
  • Wrapper
    • Basic concepts
    • Wrap
      • Generic type variables
      • Instance accessors
      • Instance properties
      • Static methods
      • Wrap() constructor
      • Instance methods
      • Examples
    • Wrapper
      • Generic type variables
      • Static properties
      • Instance accessors
      • Static methods
      • Wrapper() constructor
      • Instance methods
      • Examples
    • Wrapped
      • Generic type variables
      • Instance accessors
      • Instance properties
      • Static methods
      • Wrapped() constructor
      • Instance methods
      • Types
      • Examples
  • Tag
    • Basic concepts
    • Tag
      • Generic type variables
      • Static accessors
      • Static properties
      • Instance accessors
      • Instance properties
      • Static methods
      • Tag() constructor
      • Instance methods
      • Types
      • Examples
    • BBCodeTag
      • Static methods
      • BBCodeTag() constructor
    • HtmlTag
      • Generic type variables
      • HtmlTag() constructor
    • Tags
    • Tagged
  • Main
    • AllowedChars
    • Attribute
      • Generic type variables
      • Instance accessors
      • Instance properties
      • Static methods
      • Attribute() constructor
      • Instance methods
    • Attributes
    • Template
    • Text
  • Legend
    • Property tags
  • Other
    • Contact
    • Sponsor
  • More versions
Powered by GitBook
On this page
  • Public
  • Wrap.prototype.getClosing()
  • Wrap.prototype.getOpening()
  • Wrap.prototype.getWrap()
  • Wrap.prototype.valueOf()

Was this helpful?

  1. Wrapper
  2. Wrap

Instance methods

PreviousWrap() constructorNextExamples

Last updated 3 years ago

Was this helpful?

Public

Wrap.prototype.getClosing()

Gets the of the wrap by returning the property of the specified object.

wrap.class.ts
public getClosing(): Closing {
  return this.#closing;
}

Returns

The return value is the wrap closing of a generic type variable .

Wrap.prototype.getOpening()

Gets the of the wrap by returning the property of the specified object.

wrap.class.ts
public getOpening(): Opening {
  return this.#opening;
}

Returns

Wrap.prototype.getWrap()

wrap.class.ts
public get(): `${Opening}${Closing}` {
  return this.valueOf();
}

Returns

Wrap.prototype.valueOf()

wrap.class.ts
public valueOf(): `${Opening}${Closing}` {
  return super.valueOf() as `${Opening}${Closing}`;
}

Returns

The return value is the wrap opening of a generic type variable .

Gets the , primitive value consists of the and .

The return value is the wrap consists of the opening and closing of a generic type variable and on the template.

Returns the , primitive value of the specified object.

The return value is a generic type variable and on the template, if properly defined, or an empty .

Wrap
string
Opening
Opening
Closing
Opening
Closing
Closing
#closing
#opening
closing
opening
wrap
opening
closing
wrap