View Single Post
09-12-22, 06:38 AM   #3
Kanegasi
A Molten Giant
 
Kanegasi's Avatar
AddOn Author - Click to view addons
Join Date: Apr 2007
Posts: 666
I found mentions of textType in the SimpleHTML documentation from a beta export:

Lua Code:
  1. {
  2.     Name = "GetFont",
  3.     Type = "Function",
  4.  
  5.     Arguments =
  6.     {
  7.         { Name = "textType", Type = "string", Nilable = false },
  8.     },
  9.  
  10.     Returns =
  11.     {
  12.         { Name = "fontFile", Type = "string", Nilable = false },
  13.         { Name = "height", Type = "number", Nilable = false },
  14.         { Name = "flags", Type = "string", Nilable = false },
  15.     },
  16. },
  17. {
  18.     Name = "GetFontObject",
  19.     Type = "Function",
  20.  
  21.     Arguments =
  22.     {
  23.         { Name = "textType", Type = "string", Nilable = false },
  24.     },
  25.  
  26.     Returns =
  27.     {
  28.         { Name = "font", Type = "table", Nilable = false },
  29.     },
  30. },
  31. {
  32.     Name = "SetFont",
  33.     Type = "Function",
  34.  
  35.     Arguments =
  36.     {
  37.         { Name = "textType", Type = "string", Nilable = false },
  38.         { Name = "fontFile", Type = "string", Nilable = false },
  39.         { Name = "height", Type = "number", Nilable = false },
  40.         { Name = "flags", Type = "string", Nilable = false },
  41.     },
  42. },
  43. {
  44.     Name = "SetFontObject",
  45.     Type = "Function",
  46.  
  47.     Arguments =
  48.     {
  49.         { Name = "textType", Type = "string", Nilable = false },
  50.         { Name = "font", Type = "table", Nilable = false },
  51.     },
  52. },
  Reply With Quote