private void RemoveRegistered(Type type) { ObjectInfo obj = RegisteredObjects.FindObject(type); RegisteredObjects.Objects.Items.Remove(obj); }No.2:调用此方法,要删除已注册的对象,只需传递对象类型即可。PS:必须在创建Report对象后删除对象,否则在删除后,将在空集合中搜索对象。
RemoveRegistered(typeof(FastReport.Export.LaTeX.LaTeXExport)); RemoveRegistered(typeof(FastReport.Export.Zpl.ZplExport)); RemoveRegistered(typeof(FastReport.Export.Svg.SVGExport)); RemoveRegistered(typeof(FastReport.Export.Dbf.DBFExport));另一种禁用对象的方法:
private void DisableRegistered(Type type) { ObjectInfo obj = RegisteredObjects.FindObject(type); obj.Enabled = false; }No3:写一个函数来排除包含对象
private void EnableRegistered(Type type) { ObjectInfo obj = RegisteredObjects.FindObject(type); obj.Enabled = true; }通过这种方式,可以在报表预览菜单中管理对象的显示。
本站文章除注明转载外,均为本站原创或翻译
欢迎任何形式的转载,但请务必注明出处,尊重他人劳动成果
转载请注明:文章转载自:FastReport控件中文网 [https://www.fastreportcn.com/]
本文地址:https://www.fastreportcn.com/post/2115.html
欢迎任何形式的转载,但请务必注明出处,尊重他人劳动成果
转载请注明:文章转载自:FastReport控件中文网 [https://www.fastreportcn.com/]
本文地址:https://www.fastreportcn.com/post/2115.html