事前準備

これから紹介するスクリプトは 共通ルーチンを使っていますので。 事前にこれらの2ファイルをCFusen.exeと同じフォルダーに コピーしおていてください。

図形サンプルの注意点としては GDIオブジェクトの初期化を最低限にしていますので、 違うスクリプトを貼り付けた場合など 前回のオブジェクトが残っている場合があります。 スクリプトを書き換えた場合は一度全付箋再読込を 行ってください。

例えばスクリプトで 前のスクリプトが

p = p or Pens.Red

後のスクリプトが

p = p or Pens.Green

となっていると、p = Pens.Redの状態が残ってしまいます。

FusenUtils.lua

-- FusenUtils.lua
function FindFusen(fname)
  local cnd = {FusenName = fname}
  local list = f_SearchFusen(cnd)
  local it = list:GetEnumerator()
  while it:MoveNext() do
    return it.Current
  end
  return nil
end
function AllFusen()
   local cnd = {WidthMin = 0}
   local list = f_SearchFusen(cnd)
   return list:GetEnumerator()
end

color.lua

gdi = gdi or f_Gdi()
Color = Color or {
  AliceBlue = gdi:Color(240,248,255),
  AntiqueWhite = gdi:Color(250,235,215),
  Aqua = gdi:Color(0,255,255),
  Aquamarine = gdi:Color(127,255,212),
  Azure = gdi:Color(240,255,255),
  Beige = gdi:Color(245,245,220),
  Bisque = gdi:Color(255,228,196),
  Black = gdi:Color(0,0,0),
  BlanchedAlmond = gdi:Color(255,235,205),
  Blue = gdi:Color(0,0,255),
  BlueViolet = gdi:Color(138,43,226),
  Brown = gdi:Color(165,42,42),
  BurlyWood = gdi:Color(222,184,135),
  CadetBlue = gdi:Color(95,158,160),
  Chartreuse = gdi:Color(127,255,0),
  Chocolate = gdi:Color(210,105,30),
  Coral = gdi:Color(255,127,80),
  CornflowerBlue = gdi:Color(100,149,237),
  Cornsilk = gdi:Color(255,248,220),
  Crimson = gdi:Color(220,20,60),
  Cyan = gdi:Color(0,255,255),
  DarkBlue = gdi:Color(0,0,139),
  DarkCyan = gdi:Color(0,139,139),
  DarkGoldenrod = gdi:Color(184,134,11),
  DarkGray = gdi:Color(169,169,169),
  DarkGreen = gdi:Color(0,100,0),
  DarkKhaki = gdi:Color(189,183,107),
  DarkMagenta = gdi:Color(139,0,139),
  DarkOliveGreen = gdi:Color(85,107,47),
  DarkOrange = gdi:Color(255,140,0),
  DarkOrchid = gdi:Color(153,50,204),
  DarkRed = gdi:Color(139,0,0),
  DarkSalmon = gdi:Color(233,150,122),
  DarkSeaGreen = gdi:Color(143,188,139),
  DarkSlateBlue = gdi:Color(72,61,139),
  DarkSlateGray = gdi:Color(47,79,79),
  DarkTurquoise = gdi:Color(0,206,209),
  DarkViolet = gdi:Color(148,0,211),
  DeepPink = gdi:Color(255,20,147),
  DeepSkyBlue = gdi:Color(0,191,255),
  DimGray = gdi:Color(105,105,105),
  DodgerBlue = gdi:Color(30,144,255),
  Firebrick = gdi:Color(178,34,34),
  FloralWhite = gdi:Color(255,250,240),
  ForestGreen = gdi:Color(34,139,34),
  Fuchsia = gdi:Color(255,0,255),
  Gainsboro = gdi:Color(220,220,220),
  GhostWhite = gdi:Color(248,248,255),
  Gold = gdi:Color(255,215,0),
  Goldenrod = gdi:Color(218,165,32),
  Gray = gdi:Color(128,128,128),
  Green = gdi:Color(0,128,0),
  GreenYellow = gdi:Color(173,255,47),
  Honeydew = gdi:Color(240,255,240),
  HotPink = gdi:Color(255,105,180),
  IndianRed = gdi:Color(205,92,92),
  Indigo = gdi:Color(75,0,130),
  Ivory = gdi:Color(255,255,240),
  Khaki = gdi:Color(240,230,140),
  Lavender = gdi:Color(230,230,250),
  LavenderBlush = gdi:Color(255,240,245),
  LawnGreen = gdi:Color(124,252,0),
  LemonChiffon = gdi:Color(255,250,205),
  LightBlue = gdi:Color(173,216,230),
  LightCoral = gdi:Color(240,128,128),
  LightCyan = gdi:Color(224,255,255),
  LightGoldenrodYellow = gdi:Color(250,250,210),
  LimeGreen = gdi:Color(50,205,50),
  Linen = gdi:Color(250,240,230),
  Magenta = gdi:Color(255,0,255),
  Maroon = gdi:Color(128,0,0),
  MediumAquamarine = gdi:Color(102,205,170),
  MediumBlue = gdi:Color(0,0,205),
  MediumOrchid = gdi:Color(186,85,211),
  MediumPurple = gdi:Color(147,112,219),
  MediumSeaGreen = gdi:Color(60,179,113),
  MediumSlateBlue = gdi:Color(123,104,238),
  MediumSpringGreen = gdi:Color(0,250,154),
  MediumTurquoise = gdi:Color(72,209,204),
  MediumVioletRed = gdi:Color(199,21,133),
  MidnightBlue = gdi:Color(25,25,112),
  MintCream = gdi:Color(245,255,250),
  MistyRose = gdi:Color(255,228,225),
  Moccasin = gdi:Color(255,228,181),
  NavajoWhite = gdi:Color(255,222,173),
  Navy = gdi:Color(0,0,128),
  OldLace = gdi:Color(253,245,230),
  Olive = gdi:Color(128,128,0),
  OliveDrab = gdi:Color(107,142,35),
  Orange = gdi:Color(255,165,0),
  OrangeRed = gdi:Color(255,69,0),
  Orchid = gdi:Color(218,112,214),
  PaleGoldenrod = gdi:Color(238,232,170),
  PaleGreen = gdi:Color(152,251,152),
  PaleTurquoise = gdi:Color(175,238,238),
  PaleVioletRed = gdi:Color(219,112,147),
  PapayaWhip = gdi:Color(255,239,213),
  PeachPuff = gdi:Color(255,218,185),
  Peru = gdi:Color(205,133,63),
  Pink = gdi:Color(255,192,203),
  Plum = gdi:Color(221,160,221),
  PowderBlue = gdi:Color(176,224,230),
  Purple = gdi:Color(128,0,128),
  Red = gdi:Color(255,0,0),
  RosyBrown = gdi:Color(188,143,143),
  RoyalBlue = gdi:Color(65,105,225),
  SaddleBrown = gdi:Color(139,69,19),
  Salmon = gdi:Color(250,128,114),
  SandyBrown = gdi:Color(244,164,96),
  SeaGreen = gdi:Color(46,139,87),
  SeaShell = gdi:Color(255,245,238),
  Sienna = gdi:Color(160,82,45),
  Silver = gdi:Color(192,192,192),
  SkyBlue = gdi:Color(135,206,235),
  SlateBlue = gdi:Color(106,90,205),
  SlateGray = gdi:Color(112,128,144),
  Snow = gdi:Color(255,250,250),
  SpringGreen = gdi:Color(0,255,127),
  SteelBlue = gdi:Color(70,130,180),
  Tan = gdi:Color(210,180,140),
  Teal = gdi:Color(0,128,128),
  Thistle = gdi:Color(216,191,216),
  Tomato = gdi:Color(255,99,71),
  Turquoise = gdi:Color(64,224,208),
  Violet = gdi:Color(238,130,238),
  Wheat = gdi:Color(245,222,179),
  White = gdi:Color(255,255,255),
  WhiteSmoke = gdi:Color(245,245,245),
  Yellow = gdi:Color(255,255,0),
  YellowGreen = gdi:Color(154,205,50),
  LightGray = gdi:Color(211,211,211),
  LightGreen = gdi:Color(144,238,144),
  LightPink = gdi:Color(255,182,193),
  LightSalmon = gdi:Color(255,160,122),
  LightSeaGreen = gdi:Color(32,178,170),
  LightSkyBlue = gdi:Color(135,206,250),
  LightSlateGray = gdi:Color(119,136,153),
  LightSteelBlue = gdi:Color(176,196,222),
  LightYellow = gdi:Color(255,255,224),
  Lime = gdi:Color(0,255,0)
}
Pens = Pens or {
  AliceBlue = gdi:Pen(Color.AliceBlue),
  AntiqueWhite = gdi:Pen(Color.AntiqueWhite),
  Aqua = gdi:Pen(Color.Aqua),
  Aquamarine = gdi:Pen(Color.Aquamarine),
  Azure = gdi:Pen(Color.Azure),
  Beige = gdi:Pen(Color.Beige),
  Bisque = gdi:Pen(Color.Bisque),
  Black = gdi:Pen(Color.Black),
  BlanchedAlmond = gdi:Pen(Color.BlanchedAlmond),
  Blue = gdi:Pen(Color.Blue),
  BlueViolet = gdi:Pen(Color.BlueViolet),
  Brown = gdi:Pen(Color.Brown),
  BurlyWood = gdi:Pen(Color.BurlyWood),
  CadetBlue = gdi:Pen(Color.CadetBlue),
  Chartreuse = gdi:Pen(Color.Chartreuse),
  Chocolate = gdi:Pen(Color.Chocolate),
  Coral = gdi:Pen(Color.Coral),
  CornflowerBlue = gdi:Pen(Color.CornflowerBlue),
  Cornsilk = gdi:Pen(Color.Cornsilk),
  Crimson = gdi:Pen(Color.Crimson),
  Cyan = gdi:Pen(Color.Cyan),
  DarkBlue = gdi:Pen(Color.DarkBlue),
  DarkCyan = gdi:Pen(Color.DarkCyan),
  DarkGoldenrod = gdi:Pen(Color.DarkGoldenrod),
  DarkGray = gdi:Pen(Color.DarkGray),
  DarkGreen = gdi:Pen(Color.DarkGreen),
  DarkKhaki = gdi:Pen(Color.DarkKhaki),
  DarkMagenta = gdi:Pen(Color.DarkMagenta),
  DarkOliveGreen = gdi:Pen(Color.DarkOliveGreen),
  DarkOrange = gdi:Pen(Color.DarkOrange),
  DarkOrchid = gdi:Pen(Color.DarkOrchid),
  DarkRed = gdi:Pen(Color.DarkRed),
  DarkSalmon = gdi:Pen(Color.DarkSalmon),
  DarkSeaGreen = gdi:Pen(Color.DarkSeaGreen),
  DarkSlateBlue = gdi:Pen(Color.DarkSlateBlue),
  DarkSlateGray = gdi:Pen(Color.DarkSlateGray),
  DarkTurquoise = gdi:Pen(Color.DarkTurquoise),
  DarkViolet = gdi:Pen(Color.DarkViolet),
  DeepPink = gdi:Pen(Color.DeepPink),
  DeepSkyBlue = gdi:Pen(Color.DeepSkyBlue),
  DimGray = gdi:Pen(Color.DimGray),
  DodgerBlue = gdi:Pen(Color.DodgerBlue),
  Firebrick = gdi:Pen(Color.Firebrick),
  FloralWhite = gdi:Pen(Color.FloralWhite),
  ForestGreen = gdi:Pen(Color.ForestGreen),
  Fuchsia = gdi:Pen(Color.Fuchsia),
  Gainsboro = gdi:Pen(Color.Gainsboro),
  GhostWhite = gdi:Pen(Color.GhostWhite),
  Gold = gdi:Pen(Color.Gold),
  Goldenrod = gdi:Pen(Color.Goldenrod),
  Gray = gdi:Pen(Color.Gray),
  Green = gdi:Pen(Color.Green),
  GreenYellow = gdi:Pen(Color.GreenYellow),
  Honeydew = gdi:Pen(Color.Honeydew),
  HotPink = gdi:Pen(Color.HotPink),
  IndianRed = gdi:Pen(Color.IndianRed),
  Indigo = gdi:Pen(Color.Indigo),
  Ivory = gdi:Pen(Color.Ivory),
  Khaki = gdi:Pen(Color.Khaki),
  Lavender = gdi:Pen(Color.Lavender),
  LavenderBlush = gdi:Pen(Color.LavenderBlush),
  LawnGreen = gdi:Pen(Color.LawnGreen),
  LemonChiffon = gdi:Pen(Color.LemonChiffon),
  LightBlue = gdi:Pen(Color.LightBlue),
  LightCoral = gdi:Pen(Color.LightCoral),
  LightCyan = gdi:Pen(Color.LightCyan),
  LightGoldenrodYellow = gdi:Pen(Color.LightGoldenrodYellow),
  LimeGreen = gdi:Pen(Color.LimeGreen),
  Linen = gdi:Pen(Color.Linen),
  Magenta = gdi:Pen(Color.Magenta),
  Maroon = gdi:Pen(Color.Maroon),
  MediumAquamarine = gdi:Pen(Color.MediumAquamarine),
  MediumBlue = gdi:Pen(Color.MediumBlue),
  MediumOrchid = gdi:Pen(Color.MediumOrchid),
  MediumPurple = gdi:Pen(Color.MediumPurple),
  MediumSeaGreen = gdi:Pen(Color.MediumSeaGreen),
  MediumSlateBlue = gdi:Pen(Color.MediumSlateBlue),
  MediumSpringGreen = gdi:Pen(Color.MediumSpringGreen),
  MediumTurquoise = gdi:Pen(Color.MediumTurquoise),
  MediumVioletRed = gdi:Pen(Color.MediumVioletRed),
  MidnightBlue = gdi:Pen(Color.MidnightBlue),
  MintCream = gdi:Pen(Color.MintCream),
  MistyRose = gdi:Pen(Color.MistyRose),
  Moccasin = gdi:Pen(Color.Moccasin),
  NavajoWhite = gdi:Pen(Color.NavajoWhite),
  Navy = gdi:Pen(Color.Navy),
  OldLace = gdi:Pen(Color.OldLace),
  Olive = gdi:Pen(Color.Olive),
  OliveDrab = gdi:Pen(Color.OliveDrab),
  Orange = gdi:Pen(Color.Orange),
  OrangeRed = gdi:Pen(Color.OrangeRed),
  Orchid = gdi:Pen(Color.Orchid),
  PaleGoldenrod = gdi:Pen(Color.PaleGoldenrod),
  PaleGreen = gdi:Pen(Color.PaleGreen),
  PaleTurquoise = gdi:Pen(Color.PaleTurquoise),
  PaleVioletRed = gdi:Pen(Color.PaleVioletRed),
  PapayaWhip = gdi:Pen(Color.PapayaWhip),
  PeachPuff = gdi:Pen(Color.PeachPuff),
  Peru = gdi:Pen(Color.Peru),
  Pink = gdi:Pen(Color.Pink),
  Plum = gdi:Pen(Color.Plum),
  PowderBlue = gdi:Pen(Color.PowderBlue),
  Purple = gdi:Pen(Color.Purple),
  Red = gdi:Pen(Color.Red),
  RosyBrown = gdi:Pen(Color.RosyBrown),
  RoyalBlue = gdi:Pen(Color.RoyalBlue),
  SaddleBrown = gdi:Pen(Color.SaddleBrown),
  Salmon = gdi:Pen(Color.Salmon),
  SandyBrown = gdi:Pen(Color.SandyBrown),
  SeaGreen = gdi:Pen(Color.SeaGreen),
  SeaShell = gdi:Pen(Color.SeaShell),
  Sienna = gdi:Pen(Color.Sienna),
  Silver = gdi:Pen(Color.Silver),
  SkyBlue = gdi:Pen(Color.SkyBlue),
  SlateBlue = gdi:Pen(Color.SlateBlue),
  SlateGray = gdi:Pen(Color.SlateGray),
  Snow = gdi:Pen(Color.Snow),
  SpringGreen = gdi:Pen(Color.SpringGreen),
  SteelBlue = gdi:Pen(Color.SteelBlue),
  Tan = gdi:Pen(Color.Tan),
  Teal = gdi:Pen(Color.Teal),
  Thistle = gdi:Pen(Color.Thistle),
  Tomato = gdi:Pen(Color.Tomato),
  Turquoise = gdi:Pen(Color.Turquoise),
  Violet = gdi:Pen(Color.Violet),
  Wheat = gdi:Pen(Color.Wheat),
  White = gdi:Pen(Color.White),
  WhiteSmoke = gdi:Pen(Color.WhiteSmoke),
  Yellow = gdi:Pen(Color.Yellow),
  YellowGreen = gdi:Pen(Color.YellowGreen),
  LightGray = gdi:Pen(Color.LightGray),
  LightGreen = gdi:Pen(Color.LightGreen),
  LightPink = gdi:Pen(Color.LightPink),
  LightSalmon = gdi:Pen(Color.LightSalmon),
  LightSeaGreen = gdi:Pen(Color.LightSeaGreen),
  LightSkyBlue = gdi:Pen(Color.LightSkyBlue),
  LightSlateGray = gdi:Pen(Color.LightSlateGray),
  LightSteelBlue = gdi:Pen(Color.LightSteelBlue),
  LightYellow = gdi:Pen(Color.LightYellow),
  Lime = gdi:Pen(Color.Lime)
}
Brushes = Brushes or {
  AliceBlue = gdi:Brush(Color.AliceBlue),
  AntiqueWhite = gdi:Brush(Color.AntiqueWhite),
  Aqua = gdi:Brush(Color.Aqua),
  Aquamarine = gdi:Brush(Color.Aquamarine),
  Azure = gdi:Brush(Color.Azure),
  Beige = gdi:Brush(Color.Beige),
  Bisque = gdi:Brush(Color.Bisque),
  Black = gdi:Brush(Color.Black),
  BlanchedAlmond = gdi:Brush(Color.BlanchedAlmond),
  Blue = gdi:Brush(Color.Blue),
  BlueViolet = gdi:Brush(Color.BlueViolet),
  Brown = gdi:Brush(Color.Brown),
  BurlyWood = gdi:Brush(Color.BurlyWood),
  CadetBlue = gdi:Brush(Color.CadetBlue),
  Chartreuse = gdi:Brush(Color.Chartreuse),
  Chocolate = gdi:Brush(Color.Chocolate),
  Coral = gdi:Brush(Color.Coral),
  CornflowerBlue = gdi:Brush(Color.CornflowerBlue),
  Cornsilk = gdi:Brush(Color.Cornsilk),
  Crimson = gdi:Brush(Color.Crimson),
  Cyan = gdi:Brush(Color.Cyan),
  DarkBlue = gdi:Brush(Color.DarkBlue),
  DarkCyan = gdi:Brush(Color.DarkCyan),
  DarkGoldenrod = gdi:Brush(Color.DarkGoldenrod),
  DarkGray = gdi:Brush(Color.DarkGray),
  DarkGreen = gdi:Brush(Color.DarkGreen),
  DarkKhaki = gdi:Brush(Color.DarkKhaki),
  DarkMagenta = gdi:Brush(Color.DarkMagenta),
  DarkOliveGreen = gdi:Brush(Color.DarkOliveGreen),
  DarkOrange = gdi:Brush(Color.DarkOrange),
  DarkOrchid = gdi:Brush(Color.DarkOrchid),
  DarkRed = gdi:Brush(Color.DarkRed),
  DarkSalmon = gdi:Brush(Color.DarkSalmon),
  DarkSeaGreen = gdi:Brush(Color.DarkSeaGreen),
  DarkSlateBlue = gdi:Brush(Color.DarkSlateBlue),
  DarkSlateGray = gdi:Brush(Color.DarkSlateGray),
  DarkTurquoise = gdi:Brush(Color.DarkTurquoise),
  DarkViolet = gdi:Brush(Color.DarkViolet),
  DeepPink = gdi:Brush(Color.DeepPink),
  DeepSkyBlue = gdi:Brush(Color.DeepSkyBlue),
  DimGray = gdi:Brush(Color.DimGray),
  DodgerBlue = gdi:Brush(Color.DodgerBlue),
  Firebrick = gdi:Brush(Color.Firebrick),
  FloralWhite = gdi:Brush(Color.FloralWhite),
  ForestGreen = gdi:Brush(Color.ForestGreen),
  Fuchsia = gdi:Brush(Color.Fuchsia),
  Gainsboro = gdi:Brush(Color.Gainsboro),
  GhostWhite = gdi:Brush(Color.GhostWhite),
  Gold = gdi:Brush(Color.Gold),
  Goldenrod = gdi:Brush(Color.Goldenrod),
  Gray = gdi:Brush(Color.Gray),
  Green = gdi:Brush(Color.Green),
  GreenYellow = gdi:Brush(Color.GreenYellow),
  Honeydew = gdi:Brush(Color.Honeydew),
  HotPink = gdi:Brush(Color.HotPink),
  IndianRed = gdi:Brush(Color.IndianRed),
  Indigo = gdi:Brush(Color.Indigo),
  Ivory = gdi:Brush(Color.Ivory),
  Khaki = gdi:Brush(Color.Khaki),
  Lavender = gdi:Brush(Color.Lavender),
  LavenderBlush = gdi:Brush(Color.LavenderBlush),
  LawnGreen = gdi:Brush(Color.LawnGreen),
  LemonChiffon = gdi:Brush(Color.LemonChiffon),
  LightBlue = gdi:Brush(Color.LightBlue),
  LightCoral = gdi:Brush(Color.LightCoral),
  LightCyan = gdi:Brush(Color.LightCyan),
  LightGoldenrodYellow = gdi:Brush(Color.LightGoldenrodYellow),
  LimeGreen = gdi:Brush(Color.LimeGreen),
  Linen = gdi:Brush(Color.Linen),
  Magenta = gdi:Brush(Color.Magenta),
  Maroon = gdi:Brush(Color.Maroon),
  MediumAquamarine = gdi:Brush(Color.MediumAquamarine),
  MediumBlue = gdi:Brush(Color.MediumBlue),
  MediumOrchid = gdi:Brush(Color.MediumOrchid),
  MediumPurple = gdi:Brush(Color.MediumPurple),
  MediumSeaGreen = gdi:Brush(Color.MediumSeaGreen),
  MediumSlateBlue = gdi:Brush(Color.MediumSlateBlue),
  MediumSpringGreen = gdi:Brush(Color.MediumSpringGreen),
  MediumTurquoise = gdi:Brush(Color.MediumTurquoise),
  MediumVioletRed = gdi:Brush(Color.MediumVioletRed),
  MidnightBlue = gdi:Brush(Color.MidnightBlue),
  MintCream = gdi:Brush(Color.MintCream),
  MistyRose = gdi:Brush(Color.MistyRose),
  Moccasin = gdi:Brush(Color.Moccasin),
  NavajoWhite = gdi:Brush(Color.NavajoWhite),
  Navy = gdi:Brush(Color.Navy),
  OldLace = gdi:Brush(Color.OldLace),
  Olive = gdi:Brush(Color.Olive),
  OliveDrab = gdi:Brush(Color.OliveDrab),
  Orange = gdi:Brush(Color.Orange),
  OrangeRed = gdi:Brush(Color.OrangeRed),
  Orchid = gdi:Brush(Color.Orchid),
  PaleGoldenrod = gdi:Brush(Color.PaleGoldenrod),
  PaleGreen = gdi:Brush(Color.PaleGreen),
  PaleTurquoise = gdi:Brush(Color.PaleTurquoise),
  PaleVioletRed = gdi:Brush(Color.PaleVioletRed),
  PapayaWhip = gdi:Brush(Color.PapayaWhip),
  PeachPuff = gdi:Brush(Color.PeachPuff),
  Peru = gdi:Brush(Color.Peru),
  Pink = gdi:Brush(Color.Pink),
  Plum = gdi:Brush(Color.Plum),
  PowderBlue = gdi:Brush(Color.PowderBlue),
  Purple = gdi:Brush(Color.Purple),
  Red = gdi:Brush(Color.Red),
  RosyBrown = gdi:Brush(Color.RosyBrown),
  RoyalBlue = gdi:Brush(Color.RoyalBlue),
  SaddleBrown = gdi:Brush(Color.SaddleBrown),
  Salmon = gdi:Brush(Color.Salmon),
  SandyBrown = gdi:Brush(Color.SandyBrown),
  SeaGreen = gdi:Brush(Color.SeaGreen),
  SeaShell = gdi:Brush(Color.SeaShell),
  Sienna = gdi:Brush(Color.Sienna),
  Silver = gdi:Brush(Color.Silver),
  SkyBlue = gdi:Brush(Color.SkyBlue),
  SlateBlue = gdi:Brush(Color.SlateBlue),
  SlateGray = gdi:Brush(Color.SlateGray),
  Snow = gdi:Brush(Color.Snow),
  SpringGreen = gdi:Brush(Color.SpringGreen),
  SteelBlue = gdi:Brush(Color.SteelBlue),
  Tan = gdi:Brush(Color.Tan),
  Teal = gdi:Brush(Color.Teal),
  Thistle = gdi:Brush(Color.Thistle),
  Tomato = gdi:Brush(Color.Tomato),
  Turquoise = gdi:Brush(Color.Turquoise),
  Violet = gdi:Brush(Color.Violet),
  Wheat = gdi:Brush(Color.Wheat),
  White = gdi:Brush(Color.White),
  WhiteSmoke = gdi:Brush(Color.WhiteSmoke),
  Yellow = gdi:Brush(Color.Yellow),
  YellowGreen = gdi:Brush(Color.YellowGreen),
  LightGray = gdi:Brush(Color.LightGray),
  LightGreen = gdi:Brush(Color.LightGreen),
  LightPink = gdi:Brush(Color.LightPink),
  LightSalmon = gdi:Brush(Color.LightSalmon),
  LightSeaGreen = gdi:Brush(Color.LightSeaGreen),
  LightSkyBlue = gdi:Brush(Color.LightSkyBlue),
  LightSlateGray = gdi:Brush(Color.LightSlateGray),
  LightSteelBlue = gdi:Brush(Color.LightSteelBlue),
  LightYellow = gdi:Brush(Color.LightYellow),
  Lime = gdi:Brush(Color.Lime)
}
 
comments powered by Disqus