AutoComplete for ASP.NET Web Forms
ForeColor プロパティ
使用例 

C1.C1Report.4 アセンブリ > C1.C1Report 名前空間 > Field クラス : ForeColor プロパティ
Gets or sets the field's foreground color.
シンタックス
'宣言
 
Public Property ForeColor As System.Drawing.Color
public System.Drawing.Color ForeColor {get; set;}
解説
Use the ForeColor property to specify the color for text in a field. You can use this property to make fields easy to read or to convey a special meaning.
使用例
The code below uses script to change the color of the text in the UnitsInStock field when its value falls below the reorder level.
// build script
string script = "UnitsInStock.ForeColor = " +
	"IIF(UnitsInStock < ReorderLevel, vbRed, vbBlack)";
	
// assign script to detail section
_c1r.Sections.Detail.OnPrint = script;
参照

Field クラス
Field メンバ