You find this example project in your Plugins Download as a Xojo project file within the examples folder: /GraphicsMagick/GraphicsMagick/List Coders
FileTypes
Filetype application/binary
End FileTypes
Class Window1 Inherits Window
Control ListBox1 Inherits ListBox
ControlInstance ListBox1 Inherits ListBox
End Control
EventHandler Sub Open()
dim list(-1) as GMCoderInfoMBS = GMCoderInfoMBS.CoderInfoList
for each i as GMCoderInfoMBS in list
ListBox1.AddRow i.name
ListBox1.cell(listbox1.LastIndex,1)=i.description
if i.isReadable then
ListBox1.cell(listbox1.LastIndex,2)="yes"
end if
if i.isWritable then
ListBox1.cell(listbox1.LastIndex,3)="yes"
end if
if i.isMultiFrame then
ListBox1.cell(listbox1.LastIndex,4)="yes"
end if
next
End EventHandler
End Class
MenuBar Menu
MenuItem UntitledMenu3 = ""
MenuItem UntitledMenu2 = "File"
MenuItem FileQuit = "Quit"
MenuItem UntitledMenu0 = "Edit"
MenuItem EditUndo = "Undo"
MenuItem UntitledMenu1 = "-"
MenuItem EditCut = "Cut"
MenuItem EditCopy = "Copy"
MenuItem EditPaste = "Paste"
MenuItem EditClear = "Clear"
End MenuBar
Class App Inherits Application
End Class