get_ActiveXControlBinary()

Control::get_ActiveXControlBinary() method

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

System::ArrayPtr<uint8_t> Aspose::Slides::Control::get_ActiveXControlBinary() override

Remarks

Next example shows the using ActiveXControlBinary property for changing ActiveX properties:

if (control->get_Persistence() == PersistenceType::PersistPropertyBag)
{
    control->get_Properties()->idx_set(u"Value", value);
}
else
{
    // Use your own method for managing ActiveX properties stored in its binary file
    YourMethodHere(control->get_ActiveXControlBinary());
}

See Also