Spread Windows Forms 10.0 Product Documentation
BackgroundImage Property (RichTextCellType)
Example 


Gets or sets the background image for the cell.
Syntax
'Declaration
 
Public Overridable Property BackgroundImage As Picture
'Usage
 
Dim instance As RichTextCellType
Dim value As Picture
 
instance.BackgroundImage = value
 
value = instance.BackgroundImage
public virtual Picture BackgroundImage {get; set;}

Property Value

Picture object containing the image
Example
This example sets the picture for the progress indicator cell when the style is set to display a picture.
FarPoint.Win.Spread.CellType.RichTextCellType rtf = new FarPoint.Win.Spread.CellType.RichTextCellType(); 
rtf.BackgroundImage = new FarPoint.Win.Picture(Image.FromFile("c:\\fplogosm.bmp")); 
bool b; 
rtf.Static = false; 
fpSpread1.ActiveSheet.Cells[0, 0].CellType = rtf; 
fpSpread1.ActiveSheet.Cells[0, 0].Text = @"{\\rtf1\\ansi\\ansicpg1252\\deff0\\deflang1033{\\fonttbl{\\f0\\fswiss\\fcharset0Arial;}}{\\colortbl ;\\red255\\green0\\blue0;\\red255\\green0\\blue255;\\red128\\green0\\blue0;\\red0\\green0\\blue0;}{\\*\\generator
Msftedit 5.41.15.1507;}\\viewkind4\\uc1\\pard\\cf1\\f0\\fs20 This \\cf2 is \\cf3 RTF \\cf4\\b Test.\\cf0\\b0\\par}"; 
b = rtf.IsFormulaValue; 
MessageBox.Show(b.ToString());
Dim rtf As New FarPoint.Win.Spread.CellType.RichTextCellType
rtf.BackgroundImage = New FarPoint.Win.Picture(Image.FromFile("c:\fplogosm.bmp"))
Dim b As Boolean
rtf.Static = False
FpSpread1.ActiveSheet.Cells(0, 0).CellType = rtf
FpSpread1.ActiveSheet.Cells(0, 0).Text = "{\rtf1\ansi\ansicpg1252\deff0\deflang1033{\fonttbl{\f0\fswiss\fcharset0 Arial;}}{\colortbl
;\red255\green0\blue0;\red255\green0\blue255;\red128\green0\blue0;\red0\green0\blue0;}{\*\generator Msftedit 5.41.15.1507;}\viewkind4\uc1\pard\cf1\f0\fs20
This \cf2 is \cf3 RTF \cf4\b Test.\cf0\b0\par}"
b = rtf.IsFormulaValue
MessageBox.Show(b.ToString())
Requirements

Target Platforms: Windows 2000 Professional (SP4), Windows 2000 Server, Windows 2003 Server (SP1), Windows Server 2012 R2, Windows 2008, Windows XP (SP2), Windows Vista, Windows 7, Windows 8, Windows 8.1, Windows 10

See Also

Reference

RichTextCellType Class
RichTextCellType Members

 

 


Copyright © GrapeCity, inc. All rights reserved.