Code: Alles auswählen
Structure SCCharacterRange
cpMin.l
cpMax.l
EndStructure
Structure SCTextRange
chrg.SCCharacterRange
*lpstrText
EndStructure
Code: Alles auswählen
[...]
tr.SCTextRange
tr\chrg\cpMin = 0
tr\chrg\cpMax = ScintillaSendMessage(gadget, #SCI_GETTEXTLENGTH)
tr\lpstrText = AllocateMemory(2 * (tr\chrg\cpMax - tr\chrg\cpMin) + 2)
ScintillaSendMessage(gadget, #SCI_GETSTYLEDTEXT,0, tr)
WriteData(file, tr\lpstrText, tr\chrg\cpMax - tr\chrg\cpMin)
FreeMemory(tr\lpstrText)
[...]