Package org.apache.poi.hslf.record
Class ExControlAtom
- java.lang.Object
-
- org.apache.poi.hslf.record.Record
-
- org.apache.poi.hslf.record.RecordAtom
-
- org.apache.poi.hslf.record.ExControlAtom
-
public final class ExControlAtom extends RecordAtom
An atom record that specifies an ActiveX control.- Author:
- Yegor Kozlov
-
-
Constructor Summary
Constructors Modifier Constructor Description protected
ExControlAtom()
Constructs a brand new embedded object atom record.protected
ExControlAtom(byte[] source, int start, int len)
Constructs the ExControlAtom record from its source data.
-
Method Summary
All Methods Instance Methods Concrete Methods Modifier and Type Method Description long
getRecordType()
Gets the record type.int
getSlideId()
An integer that specifies which presentation slide is associated with the ActiveX control.void
setSlideId(int id)
Sets which presentation slide is associated with the ActiveX control.void
writeOut(java.io.OutputStream out)
Write the contents of the record back, so it can be written to disk-
Methods inherited from class org.apache.poi.hslf.record.RecordAtom
getChildRecords, isAnAtom
-
Methods inherited from class org.apache.poi.hslf.record.Record
buildRecordAtOffset, createRecordForType, findChildRecords, writeLittleEndian, writeLittleEndian
-
-
-
-
Constructor Detail
-
ExControlAtom
protected ExControlAtom()
Constructs a brand new embedded object atom record.
-
ExControlAtom
protected ExControlAtom(byte[] source, int start, int len)
Constructs the ExControlAtom record from its source data.- Parameters:
source
- the source data as a byte array.start
- the start offset into the byte array.len
- the length of the slice in the byte array.
-
-
Method Detail
-
getSlideId
public int getSlideId()
An integer that specifies which presentation slide is associated with the ActiveX control.It MUST be 0x00000000 or equal to the value of the slideId field of a SlidePersistAtom record. The value 0x00000000 specifies a null reference.
- Returns:
- an integer that specifies which presentation slide is associated with the ActiveX control
-
setSlideId
public void setSlideId(int id)
Sets which presentation slide is associated with the ActiveX control.- Parameters:
id
- an integer that specifies which presentation slide is associated with the ActiveX controlIt MUST be 0x00000000 or equal to the value of the slideId field of a SlidePersistAtom record. The value 0x00000000 specifies a null reference.
-
getRecordType
public long getRecordType()
Gets the record type.- Specified by:
getRecordType
in classRecord
- Returns:
- the record type.
-
-