From 24e88eff569427589d527ff734b11236fecac820 Mon Sep 17 00:00:00 2001
From: michael
Date: Thu, 28 Apr 2005 21:51:31 +0000
Subject: [PATCH] + Filled descriptions of last functions
---
docs/sysutils.xml | 118 ++++++++++++++++++++++++++++++++++++++++++++--
1 file changed, 115 insertions(+), 3 deletions(-)
diff --git a/docs/sysutils.xml b/docs/sysutils.xml
index 11c6b72bc1..a15abf69b4 100644
--- a/docs/sysutils.xml
+++ b/docs/sysutils.xml
@@ -7330,7 +7330,7 @@ failed. This operation takes into account the system settings for floating
point representations.
-On error, -1 is returned.
+On error, False is returned.
@@ -7340,48 +7340,160 @@ On error, -1 is returned.
Compare two widestrings (case sensitive)
+
+WideCompareStr compares two widestrings and returns the following
+result:
+
+
+
< 0
if S1<S2.
+
0
if S1=S2.
+
> 0
if S1>S2.
+
+
+The comparision takes into account wide characters, i.e. it takes
+care of strange accented characters. Contrary to ,
+the comparision is case sensitive.
+
+WideCompareStr compares two widestrings and returns the following
+result:
+
+
+
< 0
if S1<S2.
+
0
if S1=S2.
+
> 0
if S1>S2.
+
+
+The comparision takes into account wide characters, i.e. it takes
+care of strange accented characters. Contrary to ,
+the comparision is case insensitive.
+
+
+
+None.
+
+
+
+
+
+Format a wide string.
+
+WideFormat does the same as but accepts as a
+formatting string a WideString. The resulting string is also a WideString.
+
+
+For more information about the used formatting characters, see the
+ string.
+
+
Change a widestring to all-lowercase.
+
+WideLowerCase converts the string S to lowercase characters
+and returns the resulting string. It takes into account the operating system language
+settings when doing this, so spcial characters are converted correctly as
+well.
+
+
+On linux, no language setting is taken in account yet.
+
+
+
+None.
+
+
+
+Check whether two widestrings are the same (case sensitive)
+WideSameStr returns True if
+returns 0 (zero), i.e. when S1 and S2 are the same
+string (taking into account case).
+
+
+
+
+
+Check whether two widestrings are the same (ignoring case)
+WideSameText returns True if
+returns 0 (zero), i.e. when S1 and S2 are the same
+string (taking into account case).
+
+
+
+
+
+Change a widestring to all-lowercase.
+WideUpperCase converts the string S to uppercase characters
+and returns the resulting string. It takes into account the operating system language
+settings when doing this, so spcial characters are converted correctly as
+well.
+
+
+On linux, no language setting is taken in account yet.
+
+
+
+None.
+
+
+
+
-
-
+Word-wrap a text.
+
+WrapText does a wordwrap at column MaxCol of the string
+in Line. It breaks the string only at characters which are in
+BreakChars (default whitespace and hyphen) and inserts then the string
+BreakStr (default the lineending character for the current OS).
+
+
+
+