Platforms to show: All Mac Windows Linux Cross-Platform

DesktopTextArea class

Type Topic Version
class Cocoa Controls 21.5
The built in textarea class in Xojo.
Example
// make a PDF from a textarea in Cocoa Xojo target:

// find view
dim n as NSViewMBS = TextArea1.NSViewMBS
if n = nil then
MsgBox "Only in Cocoa!"
Return
end if

// make pdf data
dim s as string = n.dataWithPDFInsideRect(0,0,n.frame.Width, n.frame.Height)

// save
dim f as FolderItem = GetSaveFolderItem("", "test.pdf")

if f<>Nil then

dim b as BinaryStream = BinaryStream.Create(f, true)

b.Write s

end if

Requires Xojo 2021r3 or newer.

This class has no sub classes.

See also in the Xojo Language Reference


The items on this page are in the following plugins: MBS MacCocoa Plugin, MBS MacControls Plugin, MBS Util Plugin, MBS Win Plugin.


DesktopTabPanel   -   DesktopTextField


The biggest plugin in space...