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)
Syntaxpublic byte[] ActiveXControlBinary { get; }
Public ReadOnly Property ActiveXControlBinary As Byte()
Get
public:
virtual property array<unsigned char>^ ActiveXControlBinary {
array<unsigned char>^ get () sealed;
}
abstract ActiveXControlBinary : byte[] with get
override ActiveXControlBinary : byte[] with get
Property Value
Type:
ByteImplements
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);
}
See Also