本文整理汇总了C#中Report._DeleteStates方法的典型用法代码示例。如果您正苦于以下问题:C# Report._DeleteStates方法的具体用法?C# Report._DeleteStates怎么用?C# Report._DeleteStates使用的例子?那么恭喜您, 这里精选的方法代码示例或许可以为您提供帮助。您也可以进一步了解该方法所在类Report
的用法示例。
在下文中一共展示了Report._DeleteStates方法的2个代码示例,这些例子默认根据受欢迎程度排序。您可以为喜欢或者感觉有用的代码点赞,您的评价将有助于系统推荐出更棒的C#代码示例。
示例1: DeleteReport
internal void DeleteReport(Report report, bool DenyShared)
{
report.Validate(true);
if(report.State==Report.StateEnum.Executing)
try
{
report.CancelExecute();
}
catch
{
// do nothing
}
if (BeforeDeleteReport != null)
BeforeDeleteReport(report, EventArgs.Empty);
DeleteSharedReports(report);
report._DeleteStates();
report._Delete(DenyShared);
report=null;
}
示例2: DeleteSharedReport
public void DeleteSharedReport(Report parentReport, Report childReport)
{
System.Type reportType=childReport.GetType();
if(parentReport.GetType()!=reportType)
throw new Exception("Parent and child report type mismatch");
short maxSurscriberSharing=0;
// delete child report states
childReport._DeleteStates();
// ----------------------------------------
if(reportType==typeof(OlapReport))
{
FI.DataAccess.OlapReports dacObj=DataAccessFactory.Instance.GetOlapReportsDA();
dacObj.DeleteSharedReport(parentReport.ID , childReport.ID, ref maxSurscriberSharing);
}
else if(reportType==typeof(StorecheckReport))
{
FI.DataAccess.StorecheckReports dacObj=DataAccessFactory.Instance.GetStorecheckReportsDA();
dacObj.DeleteSharedReport(parentReport.ID , childReport.ID, ref maxSurscriberSharing);
}
else if(reportType==typeof(CustomSqlReport))
{
FI.DataAccess.CustomSqlReports dacObj=DataAccessFactory.Instance.GetCustomSqlReportsDA();
dacObj.DeleteSharedReport(parentReport.ID , childReport.ID, ref maxSurscriberSharing);
}
else if(reportType==typeof(CustomMdxReport))
{
FI.DataAccess.CustomMdxReports dacObj=DataAccessFactory.Instance.GetCustomMdxReportsDA();
dacObj.DeleteSharedReport(parentReport.ID , childReport.ID, ref maxSurscriberSharing);
}
else
throw new NotSupportedException();
// ----------------------------------------
childReport._sharing=Report.SharingEnum.None;
parentReport._maxSubscriberSharing=(Report.SharingEnum)maxSurscriberSharing;
}