PublicAPI.KPI.Indicator.IncrementFactValue ELMA API Documentation
Increase indicator fact value
 
 
Syntax

public void IncrementFactValue(
	Indicator indicator,
	Nullable<DateTime> date,
	User user,
	double value,
	string comment
)

Parameters

indicator
Type: Indicator
Indicator. Object. Access path: PublicAPI.KPI.Indicator
date
Type: System Nullable DateTime 
Date
user
Type: User
User. Object. Access path: PublicAPI.Portal.Security.User
value
Type: System Double
Added value, by default = 1
comment
Type: System String
Comment
Examples

//indicator - indicator, IIndicator type object 
//date - date; if not specified, the current time is used 
//user - user, optional parameter 
//value - added value; equals 1, if not specified 
//comment - comment, optional parameter

PublicAPI.KPI.Indicator.IncrementFactValue(indicator, date, user, value, comment);
See Also