Package org.apache.poi.hpsf.littleendian

Examples of org.apache.poi.hpsf.littleendian.DWord


     *
     * @return a flag indicating the Clipboard Format Tag
     */
    public int getClipboardFormatTag()
    {
        DWord clipboardFormatTag = new DWord(getThumbnail(),OFFSET_CFTAG);
        return clipboardFormatTag.intValue();
    }
View Full Code Here


        {
            throw new HPSFException("Clipboard Format Tag of Thumbnail must " +
                                    "be CFTAG_WINDOWS.");
        }

        DWord clipboardFormat = new DWord(getThumbnail(),OFFSET_CF);
        return clipboardFormat.intValue();
    }
View Full Code Here

TOP

Related Classes of org.apache.poi.hpsf.littleendian.DWord

Copyright © 2018 www.massapicom. All rights reserved.
All source code are property of their respective owners. Java is a trademark of Sun Microsystems, Inc and owned by ORACLE Inc. Contact coftware#gmail.com.