'Declaration Public Property ShowEllipsis As Boolean
'Usage Dim instance As TextCellType Dim value As Boolean instance.ShowEllipsis = value value = instance.ShowEllipsis
public bool ShowEllipsis {get; set;}
'Declaration Public Property ShowEllipsis As Boolean
'Usage Dim instance As TextCellType Dim value As Boolean instance.ShowEllipsis = value value = instance.ShowEllipsis
public bool ShowEllipsis {get; set;}
FarPoint.Web.Spread.TextCellType textcell = new FarPoint.Web.Spread.TextCellType(); textcell.AllowWrap = false; textcell.ShowEllipsis = true; FpSpread1.Sheets[0].Cells[0, 0].CellType = textcell;
Dim textcell As New FarPoint.Web.Spread.TextCellType() textcell.AllowWrap = False textcell.ShowEllipsis = True FpSpread1.Sheets(0).Cells(0, 0).CellType = textcell