TRichEdit on Delphi 2010

时间:2016-03-14 15:32:29

标签: delphi delphi-2010

我有一个TRichEdit组件,我放了一个长文本。当我显示编辑时,它显示在一行中,显然不完整。

如何通过线条跳转来查看完整的文字?

我要展示的文字是: Debido a que el valor netoderealizacióndelos inventarios es inferior al valor en libros en la fecha del ESFA,seestáenpresencia de deterioro de este elemento y por lo tanto se debe efectuar un ajuste en esta cuenta contra las ganancias acumulada

但Delphi显示的文字如下:richedit

我希望文本显示完整,就像备忘录一样,当它处于最大长度时,一行跳转显示下一行中的文本。求你帮帮我。

1 个答案:

答案 0 :(得分:0)

将富编辑控件的WordWrap属性设置为google.charts.load('current', {'packages':['corechart']}); var charts = { init: function() { var self = this; $('.event').each(function() { console.log('event'); var $this = $(this); charts.draw($this.data('attending'), $this.data('interested'), $this.data('eventname'), $this.data('id')); }) }, draw: function(attending, interested, eventname, id) { var piechartID = $('.event .piechart').attr('id'); var capacity = 400; var rest_capacity = capacity - (attending + interested); var data = google.visualization.arrayToDataTable([ ['Bezoekers', 'Aantal'], ['Gaan', attending], ['Geinteresseerd', interested], ['Overige capaciteit', rest_capacity] ]); var options = {'title': eventname, 'width':400, 'height':300, }; var chart = new google.visualization.PieChart(document.getElementById(id)); chart.draw(data, options); } } google.charts.setOnLoadCallback(charts.init);

由于这是True属性的默认值,看起来您无意中修改了它。