|
Sebastian
Member
Posts: 7
|
 |
« on: February 21, 2011, 09:55:09 AM » |
|
Hey,
we have had some trouble with the Selection_object.Find.Execute(["strFind"], ["strReplace"], ["strConstraintString"], [boolMatchCase=false], [boolMatchWholeWords=false], [boolMatchPatterns=false], [boolForward=true], [boolWrap=true], [intFindReplaceAction=1], [boolSetFindDialogOptions=false]); function.
Our example: Performing a ReplaceAll action for the document content, "hello Hello", replaceing all "hello" by "cu" case sensitve.
Selection_object.Find.Execute("hello", "cu", "", true, false, false, true, true, 3, false);
Perfoming this action XMetall/XMax replaces both "hello" and "Hello" by "cu" - it seems to ignore the case senstive flag for ReplaceAll?
|