ControlActiveXControlBinary Property

Specifies the persistence of an ActiveX control when the method used to persist is either PersistStream, PersistStreamInit or PersistStorage.

Namespace:  Aspose.Slides
Assembly:  Aspose.Slides (in Aspose.Slides.dll) Version: 20.3.0.0 (20.3)
Syntax
public byte[] ActiveXControlBinary { get; }

Property Value

Type: Byte

Implements

IControlActiveXControlBinary
Examples
Next example shows the using ActiveXControlBinary property for changing ActiveX properties:
[C#]
if (control.Persistence == PersistenceType.PersistPropertyBag)
{
    control.Properties["Value"] = value;
}
else
{
    YourMethodHere(control.ActiveXControlBinary); //Use your own method for managing ActiveX properties stored in its binary file
}
See Also