SuggestedFileName

OleFormat.SuggestedFileName property

يحصل على اسم الملف المقترح للكائن المضمن الحالي إذا كنت تريد حفظه في ملف.

public string SuggestedFileName { get; }

أمثلة

يوضح كيفية الحصول على اسم الملف المقترح لكائن OLE.

Document doc = new Document(MyDir + "OLE shape.rtf");

Shape oleShape = (Shape) doc.FirstSection.Body.GetChild(NodeType.Shape, 0, true);

// يمكن أن توفر كائنات OLE اسم ملف وامتدادًا مقترحين،
// والذي يمكننا استخدامه عند حفظ محتويات الكائن في ملف في نظام الملفات المحلي.
string suggestedFileName = oleShape.OleFormat.SuggestedFileName;

Assert.AreEqual("CSV.csv", suggestedFileName);

using (FileStream fileStream = new FileStream(ArtifactsDir + suggestedFileName, FileMode.Create))
{
    oleShape.OleFormat.Save(fileStream);
}

أنظر أيضا