This commit is contained in:
2023-01-05 16:32:28 +00:00
parent 9f6e3c7407
commit d3c015d382
163 changed files with 0 additions and 0 deletions

View File

@@ -0,0 +1,24 @@
using System;
using System.Collections.Generic;
using System.Linq;
using System.Text;
using System.Threading.Tasks;
using System.IO;
namespace W2PGrid
{
public class MyGrid : C1.Win.C1FlexGrid.C1FlexGrid
{
public string GetXML()
{
string retstr = null;
using (StringWriter sw = new StringWriter())
{
this.WriteXml(sw);
retstr = sw.GetStringBuilder().ToString();
sw.Close();
}
return retstr;
}
}
}