FarPoint.Win.Spread アセンブリ > FarPoint.Win.Spread 名前空間 > Column クラス : GetPreferredWidth メソッド |
テキスト型セルまたはテキストを含むヘッダセルの場合は、テキスト型セルまたはヘッダセルのWordWrapプロパティをFalseに設定して、ワードラップを必ず無効にしてください。
このメソッドまたはSheetView.GetPreferredColumnWidthメソッドを使用することで、列の幅をセルのデータに基づいて設定できます。詳細については、「データに合わせたサイズ」を参照してください。
FarPoint.Win.Spread.Column col; float size; col = fpSpread1.ActiveSheet.Columns[0]; fpSpread1.ActiveSheet.Cells[0, 0].Text = "This text will be used to determine the width of the column"; size = col.GetPreferredWidth(); col.Width = size;
Dim col As FarPoint.Win.Spread.Column Dim size As Single col = fpSpread1.ActiveSheet.Columns(0) fpSpread1.ActiveSheet.Cells(0, 0).Text = "This text will be used to determine the width of the column" size = col.GetPreferredWidth() col.Width = size