use of org.apache.poi.hslf.record.RecordTypes.RoundTripHFPlaceholder12 in project poi by apache.
the class HSLFTextShape method isPlaceholder.
@Override
public boolean isPlaceholder() {
OEPlaceholderAtom oep = getPlaceholderAtom();
if (oep != null) {
return true;
}
//special case for files saved in Office 2007
RoundTripHFPlaceholder12 hldr = getHFPlaceholderAtom();
if (hldr != null) {
return true;
}
return false;
}
Aggregations