'宣言 Public Property Text As System.String
'使用法 Dim instance As Field Dim value As System.String instance.Text = value value = instance.Text
public System.string Text {get; set;}
'宣言 Public Property Text As System.String
'使用法 Dim instance As Field Dim value As System.String instance.Text = value value = instance.Text
public System.string Text {get; set;}
The Text property contains the text that will be rendered on the report.
This value may be rendered literally (without any translation) or it may be evaluated as a VBScript expression, depending on the setting of the Calculated property.
// display literal Text _c1r.Field[0].Text = "Sales Tax"; _c1r.Field[0].Calculated = false; // display a calculated value _c1r.Field[1].Text = "Sales * 0.085"; _c1r.Field[1].Calculated = true;