Package org.apache.poi.hslf.record
Class ExControl
- java.lang.Object
-
- org.apache.poi.hslf.record.Record
-
- org.apache.poi.hslf.record.RecordContainer
-
- org.apache.poi.hslf.record.ExEmbed
-
- org.apache.poi.hslf.record.ExControl
-
public final class ExControl extends ExEmbed
A container record that specifies information about an ActiveX control. It contains:1. ExControlAtom (4091) 2. ExOleObjAtom (4035) 3. CString (4026), Instance MenuName (1) used for menus and the Links dialog box. 4. CString (4026), Instance ProgID (2) that stores the OLE Programmatic Identifier. A ProgID is a string that uniquely identifies a given object. 5. CString (4026), Instance ClipboardName (3) that appears in the paste special dialog. 6. MetaFile( 4033), optional
-
-
Constructor Summary
Constructors Constructor Description ExControl()
Create a new ExEmbed, with blank fields
-
Method Summary
All Methods Instance Methods Concrete Methods Modifier and Type Method Description ExControlAtom
getExControlAtom()
Gets theExControlAtom
.long
getRecordType()
Returns the type (held as a little endian in bytes 3 and 4) that this class handles.-
Methods inherited from class org.apache.poi.hslf.record.ExEmbed
getClipboardName, getExEmbedAtom, getExOleObjAtom, getMenuName, getProgId, setClipboardName, setMenuName, setProgId, writeOut
-
Methods inherited from class org.apache.poi.hslf.record.RecordContainer
addChildAfter, addChildBefore, appendChildRecord, findFirstOfType, getChildRecords, handleParentAwareRecords, isAnAtom, moveChildBefore, moveChildrenAfter, moveChildrenBefore, removeChild, setChildRecord, writeOut
-
Methods inherited from class org.apache.poi.hslf.record.Record
buildRecordAtOffset, createRecordForType, findChildRecords, writeLittleEndian, writeLittleEndian
-
-
-
-
Method Detail
-
getExControlAtom
public ExControlAtom getExControlAtom()
Gets theExControlAtom
.- Returns:
- the
ExControlAtom
.
-
getRecordType
public long getRecordType()
Returns the type (held as a little endian in bytes 3 and 4) that this class handles.- Overrides:
getRecordType
in classExEmbed
- Returns:
- the record type.
-
-