Form1.cs
using System;
using System.Collections.Generic;
using System.ComponentModel;
using System.Data;
using System.Drawing;
using System.Linq;
using System.Text;
using System.Windows.Forms;
using Microsoft.Office.Interop.Word;
namespace WindowsFormsApplication1
{
public partial class Form1 : Form
{
public Form1()
{
InitializeComponent();
}
ApplicationClass uygulama = new ApplicationClass();
private void button1_Click(object sender, EventArgs e)
{
object missing = System.Reflection.Missing.Value;
//Yeni dokuman oluşturuyoruz
Document dokuman = uygulama.Documents.Add(ref missing, ref missing, ref missing, ref missing);
uygulama.Visible = true;
dokuman.Activate();
//Yeni belgede hizalamayı ortada olmasını sağlıyoruz
uygulama.Selection.ParagraphFormat.Alignment = WdParagraphAlignment.wdAlignParagraphCenter;
//Yazı karakteri kalın yapıyoruz.
uygulama.Selection.Font.Bold = (int)WdConstants.wdToggle;
// Yazıyı word belgeye yazdırıyoruz.
uygulama.Selection.TypeText("Merhaba Dünya!");
}
}
}
Bir makalenin daha sonuna geldik. Bir sonraki makalede görüşmek dileğiyle. Hoşçakalın. Bahadır ŞAHİN
0 comments:
Yorum Gönder