'Declaration Public Overrides Property BackgroundImageUrl As String
'Usage Dim instance As TextCellType Dim value As String instance.BackgroundImageUrl = value value = instance.BackgroundImageUrl
public override string BackgroundImageUrl {get; set;}
'Declaration Public Overrides Property BackgroundImageUrl As String
'Usage Dim instance As TextCellType Dim value As String instance.BackgroundImageUrl = value value = instance.BackgroundImageUrl
public override string BackgroundImageUrl {get; set;}
FarPoint.Web.Spread.TextCellType t = new FarPoint.Web.Spread.TextCellType(); t.BackgroundImageUrl = "C:\\images\\example.bmp"; FpSpread1.ActiveSheetView.Cells[0, 0].CellType = t;
Dim t As New FarPoint.Web.Spread.TextCellType t.BackgroundImageUrl = "C:\images\example.bmp" FpSpread1.ActiveSheetView.Cells(0, 0).CellType = t