GetRawData
OleFormat.GetRawData method
يحصل على البيانات الأولية لكائن OLE.
public byte[] GetRawData()
أمثلة
يوضح كيفية الوصول إلى البيانات الأولية لكائن OLE المضمن.
Document doc = new Document(MyDir + "OLE objects.docx");
foreach (Shape shape in doc.GetChildNodes(NodeType.Shape, true))
{
OleFormat oleFormat = shape.OleFormat;
if (oleFormat != null)
{
Console.WriteLine($"This is {(oleFormat.IsLink ? "a linked" : "an embedded")} object");
byte[] oleRawData = oleFormat.GetRawData();
Assert.AreEqual(24576, oleRawData.Length);
}
}
أنظر أيضا
- class OleFormat
- مساحة الاسم Aspose.Words.Drawing
- المجسم Aspose.Words