https://bugs.documentfoundation.org/show_bug.cgi?id=114416

--- Comment #6 from Jim Kornelsen <[email protected]> ---
Version: 7.2.2.2 (x64) / LibreOffice Community
Build ID: 02b2acce88a210515b4a5bb2e46cbfb63fe97d56
CPU threads: 4; OS: Windows 10.0 Build 19043; UI render: Skia/Raster; VCL: win
Locale: en-US (en_US); UI: en-US
Calc: threaded

The property is still shown at
https://api.libreoffice.org/docs/idl/ref/servicecom_1_1sun_1_1star_1_1style_1_1CharacterProperties.html#a1f01c49100613675a9b896037255a2fd,
yet it still does not exist. The following python code produces an error
message <class 'AttributeError'>: CharKeepTogether:

    oParEnum = XSCRIPTCONTEXT.getDocument().getText().createEnumeration()
    while oParEnum.hasMoreElements():
        oPar = oParEnum.nextElement()
        oPortionEnum = oPar.createEnumeration()
        while oPortionEnum.hasMoreElements():
            oTextPortion = oPortionEnum.nextElement()
            if oTextPortion.TextPortionType == "Text":
                print(oTextPortion.CharKeepTogether)

-- 
You are receiving this mail because:
You are the assignee for the bug.

Reply via email to