Unit 'TagsParamsHelper' Package
[Overview][Constants][Classes][Procedures and functions][Index] [#MUIClass]

TATagList.AddTags

Add a bunch of Tags

Declaration

Source position: tagsparamshelper.pas line 35

public procedure TATagList.AddTags(

  const AList: array of NativeUInt

);

Arguments

AList

  

List of Tags/Data to add

Description

The List should contain always a Tag and a Data for the Tag (do it should be an even number of entries in the Array) You do not need to add TAG_END or TAG_DONE to the List

Example:

Tags.AddTags([
    WA_Left,   10,
    WA_Top,    20,
    WA_Width,  500,
    WA_Height, 300,
    WA_Flags,  WFLG_DEPTHGADGET or WFLG_DRAGBAR or WFLG_CLOSEGADGET or
      WFLG_ACTIVATE or WFLG_OTHER_REFRESH or WFLG_GIMMEZEROZERO,
    WA_IDCMP,  IDCMP_CLOSEWINDOW or IDCMP_REFRESHWINDOW or IDCMP_IDCMPUPDATE,
  ]);

See also

AddTag()

  

Add a Single Tag to the TagList


Documentation generated on: 2022-07-30