public SpecifyBitmapsCommand(OpenTagCache info, TagInstance tag, RenderMethod definition)
     : base(CommandFlags.Inherit,
          "SpecifyBitmaps",
          "Allows the bitmaps of the render_method to be respecified.",
          "SpecifyBitmaps",
          "Allows the bitmaps of the render_method to be respecified.")
 {
     Info = info;
     Tag = tag;
     Definition = definition;
 }
 public ListArgumentsCommand(OpenTagCache info, TagInstance tag, RenderMethod definition)
     : base(CommandFlags.Inherit,
          "ListArguments",
          "Lists the arguments of the render_method.",
          "ListArguments",
          "Lists the arguments of the render_method.")
 {
     Info = info;
     Tag = tag;
     Definition = definition;
 }
 public ListBitmapsCommand(OpenTagCache info, TagInstance tag, RenderMethod definition)
     : base(CommandFlags.Inherit,
          "ListBitmaps",
          "Lists the bitmaps used by the render_method.",
          "ListBitmaps",
          "Lists the bitmaps used by the render_method.")
 {
     Info = info;
     Tag = tag;
     Definition = definition;
 }