qwerrghj 2014-05-13 03:53 采纳率: 0%
浏览 5664

出错 使用泛型 类型“System.Collections.Generic.IEnumerable<T>”要“1”个类型实参

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 System.Net;
using InDesign;
using System.Diagnostics;

namespace WindowsFormsApplication3
{
public partial class Form1 : Form
{
public Form1()
{
InitializeComponent();
}

    private void button1_Click(object sender, EventArgs e)
    {
        // Create application instance
        Type type = Type.GetTypeFromProgID("InDesign.Application");
        InDesign.Application application = (InDesign.Application)Activator.CreateInstance(type);

        // Set unit type
        application.ViewPreferences.HorizontalMeasurementUnits = idMeasurementUnits.idMillimeters;
        application.ViewPreferences.VerticalMeasurementUnits = idMeasurementUnits.idMillimeters;

        // Create new document
        application.Documents.Add(true, application.DocumentPresets.FirstItem());

        // Get active document and change some settings
        Document document = application.ActiveDocument;
        document.DocumentPreferences.FacingPages = false;
        document.DocumentPreferences.PageWidth = 210;
        document.DocumentPreferences.PageHeight = 297;

        // Get first page (already created) and set margins
        Page page = (Page)document.Pages[1];
        page.MarginPreferences.Top = 10;
        page.MarginPreferences.Bottom = 10;
        page.MarginPreferences.Left = 20;
        page.MarginPreferences.Right = 10;

        // Create rectangle and fit an image into it
        InDesign.Rectangle rectangle = page.Rectangles.Add(document.Layers.FirstItem(), idLocationOptions.idUnknown, page);
        rectangle.GeometricBounds = new[] { 20, 30, 120, 130 };
        rectangle.Place(@"c:\temp\sample.png", false);
        rectangle.Fit(idFitOptions.idContentToFrame);

        // Create second page and set margins
        page = document.Pages.Add(idLocationOptions.idUnknown, document);
        page.MarginPreferences.Top = 10;
        page.MarginPreferences.Bottom = 10;
        page.MarginPreferences.Left = 20;
        page.MarginPreferences.Right = 10;

        // Create a text frame and add some text
        TextFrame textFrame = page.TextFrames.Add(document.Layers.FirstItem(), idLocationOptions.idUnknown, page);
        textFrame.GeometricBounds = new[] { 20, 30, 120, 130 };
        textFrame.Contents = "line1\rline2\rline3";
        IEnumerator paragraphs = textFrame.Paragraphs.GetEnumerator();
        for (int j = 0; j < textFrame.Paragraphs.Count; j++)
        {
            paragraphs.MoveNext();
            Paragraph paragraph = ((Paragraph)paragraphs.Current);
            paragraph.Justification = idJustification.idCenterAlign;
            paragraph.PointSize = 15 - j;
            paragraph.FontStyle = "Regular";
            paragraph.AppliedFont = "Verdana";
        }
    }
}

}

这个是用c#在indesign中新建文档等。大家帮忙看看怎么修改

  • 写回答

1条回答

  • a491442025 2015-01-20 03:37
    关注
    评论

报告相同问题?

悬赏问题

  • ¥20 ML307A在使用AT命令连接EMQX平台的MQTT时被拒绝
  • ¥20 腾讯企业邮箱邮件可以恢复么
  • ¥15 有人知道怎么将自己的迁移策略布到edgecloudsim上使用吗?
  • ¥15 错误 LNK2001 无法解析的外部符号
  • ¥50 安装pyaudiokits失败
  • ¥15 计组这些题应该咋做呀
  • ¥60 更换迈创SOL6M4AE卡的时候,驱动要重新装才能使用,怎么解决?
  • ¥15 让node服务器有自动加载文件的功能
  • ¥15 jmeter脚本回放有的是对的有的是错的
  • ¥15 r语言蛋白组学相关问题