本文整理汇总了C#中Microsoft.Office.Interop.Word.Application.PrintOut方法的典型用法代码示例。如果您正苦于以下问题:C# Application.PrintOut方法的具体用法?C# Application.PrintOut怎么用?C# Application.PrintOut使用的例子?那么恭喜您, 这里精选的方法代码示例或许可以为您提供帮助。您也可以进一步了解该方法所在类Microsoft.Office.Interop.Word.Application
的用法示例。
在下文中一共展示了Application.PrintOut方法的2个代码示例,这些例子默认根据受欢迎程度排序。您可以为喜欢或者感觉有用的代码点赞,您的评价将有助于系统推荐出更棒的C#代码示例。
示例1: SendToPrinter
private void SendToPrinter(Application wordApp)
{
wordApp.ActivePrinter = _printerCapture();
wordApp.PrintOut(true, false, WdPrintOutRange.wdPrintAllDocument,
Item: WdPrintOutItem.wdPrintDocumentContent, Copies: "1", Pages: "",
PageType: WdPrintOutPages.wdPrintAllPages, PrintToFile: false, Collate: true,
ManualDuplexPrint: false);
}
示例2: ImprimirReportes
//.........这里部分代码省略.........
fechapago = fechapago.AddMonths(1).Date;
break;
}
}
XrptControlPagosGrupal control = new XrptControlPagosGrupal();
control.DataSource = financieraDS.Tables[0];
control.DatosGrupo.DataSource = credito;
control.MontoCredito.Value = Convert.ToDecimal(txtCantidadCredito.EditValue);
control.DiasPago.Value = string.Format("LOS {0} DE CADA SEMANA (CON PRORROGA HASTA EL {1})", dtpFechaInicio.DateTime.ToString("dddd").ToUpper(), dtpFechaInicio.DateTime.AddDays(Convert.ToInt32(txtProrrogaG.EditValue)).ToString("dddd").ToUpper());
//control.ShowPreviewDialog();
control.Print(new clsModificarConfiguracion().configGetValue("ImpresoraBoletas"));
control.Print(new clsModificarConfiguracion().configGetValue("ImpresoraBoletas"));
foreach (DataRow fila in dtIntegrantesGrupo.Rows)
{
fechapago = dtpFechaInicio.DateTime.Date;
financieraDS.Tables[1].Rows.Clear();
financieraDS.Tables[1].AcceptChanges();
financieraDS.Tables[1].Columns["Pago"].AutoIncrementSeed = -1;
financieraDS.Tables[1].Columns["Pago"].AutoIncrementStep = -1;
financieraDS.Tables[1].Columns["Pago"].AutoIncrementSeed = 1;
financieraDS.Tables[1].Columns["Pago"].AutoIncrementStep = 1;
for (int i = 0; i < Convert.ToInt32(txtNumPlazos.EditValue); i++)
{
switch (cboPlazo.Text)
{
case "SEMANAL":
financieraDS.Tables[1].Rows.Add(new[] { fila[1], fila[8], fila[9], fila[3], fechapago.AddDays(7).Date, null });
fechapago = fechapago.AddDays(7).Date;
break;
case "QUINCENAL":
financieraDS.Tables[1].Rows.Add(new[] { fila[1], fila[8], fila[9], fila[3], fechapago.AddDays(15).Date, null });
fechapago = fechapago.AddDays(15).Date;
break;
case "MENSUAL":
financieraDS.Tables[1].Rows.Add(new[] { fila[1], fila[8], fila[9], fila[3], fechapago.AddMonths(1).Date, null });
fechapago = fechapago.AddMonths(1).Date;
break;
}
}
XrptControlPagosPersonal control1 = new XrptControlPagosPersonal();
control1.DataSource = financieraDS.Tables[1];
control1.DatosGrupo.DataSource = credito;
control1.MontoCredito.Value = Convert.ToDecimal(txtCantidadCredito.EditValue);
control1.DiasPago.Value = string.Format("LOS {0} DE CADA SEMANA (CON PRORROGA HASTA EL {1})", dtpFechaInicio.DateTime.ToString("dddd").ToUpper(), dtpFechaInicio.DateTime.AddDays(Convert.ToInt32(txtProrrogaG.EditValue)).ToString("dddd").ToUpper());
control1.Print(new clsModificarConfiguracion().configGetValue("ImpresoraBoletas"));
//financieraDS.Tables[2].Rows.Add(new[] { fila[1],CbToBytesA((Bitmap)fila[5]), CbToBytesA((Bitmap)fila[6]), CbToBytesA((Bitmap)fila[7])});
}
financieraDS.Tables[1].Rows.Clear();
foreach (DataRow fila in dtIntegrantesGrupo.Rows)
{
financieraDS.Tables[1].Rows.Add(new[] { fila[1], fila[8], fila[9], fila[3], fechapago.AddDays(7).Date, null });
}
XrptHistrorialPagoPersonal historial = new XrptHistrorialPagoPersonal();
historial.DataSource = financieraDS;
historial.DatosGrupo.DataSource = credito;
historial.MontoCredito.Value = Convert.ToDecimal(txtCantidadCredito.EditValue);
historial.DiasPago.Value = dtpFechaInicio.DateTime.ToString("dddd").ToUpper();
XRSubreport detailReport = historial.Bands[BandKind.ReportHeader].FindControl("xrSubreport1", true) as XRSubreport;
detailReport.ReportSource.DataSource = financieraDS.Tables[1];
//for (int i = 0; i < dtIntegrantesGrupo.Rows.Count; i++)
//{
historial.Print(new clsModificarConfiguracion().configGetValue("ImpresoraBoletas"));
historial.Print(new clsModificarConfiguracion().configGetValue("ImpresoraBoletas"));
//}
XrptPoderCobranza poder = new XrptPoderCobranza();
poder.DataSource = credito;
//poder.ShowPreviewDialog();
poder.Print(new clsModificarConfiguracion().configGetValue("ImpresoraBoletas"));
XrptReglamento reglamento = new XrptReglamento();
reglamento.DataSource = credito;
reglamento.BaseLetras.Value = String.Format("{0} ({1}) ", txtBase.Text, Conversiones.NumeroALetras(txtBase.EditValue.ToString()));
reglamento.Presidenta.Value =
credito.FinancieraGrupo.FinancieraGruposDetalles.First(p => p.Tipo == "PRESIDENTA").FinancieraCliente.Nombre;
reglamento.Tesorera.Value =
credito.FinancieraGrupo.FinancieraGruposDetalles.First(p => p.Tipo == "TESORERA").FinancieraCliente.Nombre;
reglamento.Print(new clsModificarConfiguracion().configGetValue("ImpresoraBoletas"));
reglamento.Print(new clsModificarConfiguracion().configGetValue("ImpresoraBoletas"));
//reglamento.ShowPreviewDialog();
//control.Pages.AddRange(historial.Pages);
this.oWord = new Word.Application();
this.oWord.Visible = false;
// Ubicación de la plantilla en el disco duro
oDoc = oWord.Documents.Add(Application.StartupPath + @"\Reglamento.dotx");
oDoc.Bookmarks["Sucursal"].Range.Text = new clsModificarConfiguracion().configGetValue("Empresa");
oDoc.Bookmarks["Direccion"].Range.Text = new clsModificarConfiguracion().configGetValue("Direccion");
object m = System.Reflection.Missing.Value;
object copies = 2;
oWord.ActivePrinter = new clsModificarConfiguracion().configGetValue("ImpresoraBoletas");
oWord.PrintOut(m, m, m, m, m, m, m, copies, m, m, m, m, m, m, m, m, m, m, m);
object doNotSaveChanges = Word.WdSaveOptions.wdDoNotSaveChanges;
oDoc.Close(ref doNotSaveChanges, m, m);
//////XrptFotosGrupos fotos=new XrptFotosGrupos {DataSource = financieraDS.Tables[2]};
////////fotos.ShowPreviewDialog(new clsModificarConfiguracion().configGetValue("ImpresoraBoletas"));
//////fotos.Print(new clsModificarConfiguracion().configGetValue("ImpresoraBoletas"));
}