GetRawData
OleFormat.GetRawData method
Obtiene datos sin procesar del objeto OLE.
public byte[] GetRawData()
Ejemplos
Muestra cómo acceder a los datos sin procesar de un objeto OLE incrustado.
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);
}
}
Ver también
- class OleFormat
- espacio de nombres Aspose.Words.Drawing
- asamblea Aspose.Words