EscherContainerRecord escherContainerRecord = drawing
.getOfficeArtSpContainer();
EscherOptRecord officeArtFOPT = escherContainerRecord
.getChildById( (short) 0xF00B );
EscherComplexProperty gtextUNICODE = (EscherComplexProperty) officeArtFOPT
.lookup( 0x00c0 );
String text = new String( gtextUNICODE.getComplexData(), "UTF-16LE" );
assertEquals( "DRAFT CONTRACT\0", text );
}