From cde97c428ac6949fefe3ce5720557e247f212926 Mon Sep 17 00:00:00 2001 From: Neil Date: Fri, 12 May 2017 08:45:27 +1000 Subject: Bug [#310]. Update documentation. --- doc/ScintillaDoc.html | 10 +++++++--- 1 file changed, 7 insertions(+), 3 deletions(-) (limited to 'doc') diff --git a/doc/ScintillaDoc.html b/doc/ScintillaDoc.html index 5c415f9bb..a7e7eba36 100644 --- a/doc/ScintillaDoc.html +++ b/doc/ScintillaDoc.html @@ -3029,15 +3029,19 @@ struct Sci_TextToFind { SCI_STYLEGETVISIBLE(int style) → bool
Text is normally visible. However, you can completely hide it by giving it a style with the visible set to 0. This could be used to hide embedded formatting instructions or - hypertext keywords in HTML or XML.

+ hypertext keywords in HTML or XML. + Invisible text may not be deleted by user actions but the application may delete invisible text by calling + SCI_DELETERANGE.

SCI_STYLESETCHANGEABLE(int style, bool changeable)
SCI_STYLEGETCHANGEABLE(int style) → bool
This is an experimental and incompletely implemented style attribute. The default setting is changeable set true but when set false it makes text - read-only. Currently it only stops the caret from being within not-changeable text and does not - yet stop deleting a range that contains not-changeable text.

+ read-only. The user can not move the caret within not-changeable text and not-changeable + text may not be deleted by the user. + The application may delete not-changeable text by calling + SCI_DELETERANGE.

SCI_STYLESETHOTSPOT(int style, bool hotspot)
-- cgit v1.2.3