Example: /GraphicsMagick/GraphicsMagick/List Coders 16bit

Online Documentation   -   Statistics   -   FAQ   -   Plugin Parts (All, Dependencies)   -   Class hierarchy

New in Version 22.2 22.3 22.4 22.5 23.0 23.1 23.2 23.3 23.4 23.5 24.0 24.1

The list of the   topics,   classes,   interfaces,   controls,   modules,   global methods by category,   global methods by name,   screenshots,   licenses   and   examples.

Platforms to show: All Mac Windows Linux Cross-Platform

/GraphicsMagick/GraphicsMagick/List Coders 16bit


Required plugins for this example: MBS GraphicsMagick Plugin

You find this example project in your Plugins Download as a Xojo project file within the examples folder: /GraphicsMagick/GraphicsMagick/List Coders 16bit

This example is the version from Tue, 10th Feb 2014.

Project "List Coders 16bit.xojo_binary_project"
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 GM16CoderInfoMBS = GM16CoderInfoMBS.CoderInfoList for each i as GM16CoderInfoMBS 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
End Project

See also:

The items on this page are in the following plugins: MBS GraphicsMagick Plugin.


💬 Ask a question or report a problem