ExpTileElement constructor

ExpTileElement(
  1. int serial,
  2. Map<String, String> params,
  3. SpWMLParamsWrapper spwmlParams,
  4. int parentSerial,
  5. int lineStart,
  6. int lineEnd,
  7. SpWMLFontStyle style,
  8. SpWMLInfo? info,
  9. StructureElementChildren children,
  10. TextParamsWrapper textParams,
  11. ExpTileParamsWrapper elParams,
)
  • serial : Array Index.
  • params : Element parameters.
  • spwmlParams : The spwml element parameters.
  • parentSerial : Parent Element serial.
  • lineStart : line info for the Error handling.
  • lineEnd : line info for the Error handling.
  • style : Font styles.
  • info : SpWML info.
  • children : This element children.
  • elParams : This element parameters.

Throws SpWMLException : ParamException.

Throws SpWMLException : ParamValueException.

Implementation

ExpTileElement(
    int serial,
    Map<String, String> params,
    SpWMLParamsWrapper spwmlParams,
    int parentSerial,
    int lineStart,
    int lineEnd,
    SpWMLFontStyle style,
    SpWMLInfo? info,
    StructureElementChildren children,
    TextParamsWrapper textParams,
    this.elParams)
    : super(
          serial,
          EnumSpWMLElementType.expTile,
          params,
          spwmlParams,
          parentSerial,
          lineStart,
          lineEnd,
          style,
          info,
          children,
          textParams);