How to set the "nowrap" and "minimum width" options in the text frame?
I tried it, but it didn't seem successful.
Am I looking for this information correctly?
https://www.indesignjs.de/extendscriptAPI/indesign-latest/#TextWrapPreference.html#d1e267213
var d = app.activeDocument;
var items = d.selection;
var item = d.selection[0];
autType = item.textFramePreferences.autoSizingType;
item.textFramePreferences.autoSizingReferencePoint = AutoSizingReferenceEnum.TOP_CENTER_POINT;
item.textFramePreferences.autoSizingType = AutoSizingTypeEnum.HEIGHT_AND_WIDTH;
item.textFramePreferences.ignoreWrap = true;
alert(item.textFramePreferences.ignoreWrap);

