EditTextView.st
changeset 6310 53912415ce0e
parent 6309 d37c8666d97e
child 6313 6bf4e512ddb9
equal deleted inserted replaced
6309:d37c8666d97e 6310:53912415ce0e
  1312 
  1312 
  1313     tabRequiresControl := aBoolean
  1313     tabRequiresControl := aBoolean
  1314 !
  1314 !
  1315 
  1315 
  1316 trimBlankLines
  1316 trimBlankLines
  1317     "If on, the blank lines are trimmed to zero size;
  1317     "If true, the blank lines are trimmed to zero size and trailing blank lines are removed;
       
  1318      if false, they are left as is;
  1318      if nil, the setting follows the current userPref setting."
  1319      if nil, the setting follows the current userPref setting."
  1319 
  1320 
  1320     ^ trimBlankLines ? (UserPreferences current trimBlankLines)
  1321     ^ trimBlankLines ? (UserPreferences current trimBlankLines)
  1321 !
  1322 !
  1322 
  1323 
  1323 trimBlankLines:aBooleanOrNil
  1324 trimBlankLines:aBooleanOrNil
  1324     "If true, the blank lines are trimmed to zero size;
  1325     "If true, the blank lines are trimmed to zero size and trailing blank lines are removed;
  1325      if false, they are not trimmed;
  1326      if false, they are left as is;
  1326      if nil, the setting follows the current userPref setting."
  1327      if nil, the setting follows the current userPref setting."
  1327 
  1328 
  1328     trimBlankLines := aBooleanOrNil.
  1329     trimBlankLines := aBooleanOrNil.
  1329 ! !
  1330 ! !
  1330 
  1331