Supporting logic to handle the use of the backslash character
This commit is contained in:
@@ -681,6 +681,10 @@ namespace Volian.Svg.Library
|
||||
// this will enable the hyphens to be found in a PDF search
|
||||
if(text.Contains("\\u8209?"))
|
||||
text = text.Replace("\\u8209?", "-");
|
||||
// Replace symbol backslash with a text backslash when printing pagelist items
|
||||
// this will enable the backslash to be found in a PDF search
|
||||
if (text.Contains("\\u9586?"))
|
||||
text = text.Replace("\\u9586?", "\\");
|
||||
SetupInheritance(myParent.MyInheritedSettings);
|
||||
float yScale = (myParent is SvgGroup && (myParent as SvgGroup).Description.ToUpper() == "ABSOLUTE") ? scale.AbsY(cb, Y): scale.Y(cb, Y);
|
||||
cb.SaveState();
|
||||
|
Reference in New Issue
Block a user