Appends the OLE object into paragraph.

Namespace: Spire.Doc.Documents
Assembly: Spire.Doc (in Spire.Doc.dll) Version: 9.6.1.0 (9.6.1.3020)

Syntax

            
 C#  Visual Basic  Visual C++  F# 
public DocOleObject AppendOleObject(
	string progId,
	string clsId,
	byte[] nativeData,
	DocPicture olePicture
)
Public Function AppendOleObject ( 
	progId As String,
	clsId As String,
	nativeData As Byte(),
	olePicture As DocPicture
) As DocOleObject
public:
DocOleObject^ AppendOleObject(
	String^ progId, 
	String^ clsId, 
	array<unsigned char>^ nativeData, 
	DocPicture^ olePicture
)
member AppendOleObject : 
        progId : string * 
        clsId : string * 
        nativeData : byte[] * 
        olePicture : DocPicture -> DocOleObject 

Parameters

progId
String
The programmatic identifier.
clsId
String
The class identifier.
nativeData
array<Byte>[]()[][]
The native data of embedded OLE object.
olePicture
DocPicture
The OLE picture.

Return Value

DocOleObject

See Also