ITopBannerARGBBackColor Property |
Get/Set the background color according to an RGB value
Namespace: SurveyToGo.UserLogic.InterfacesAssembly: UserLogicInt.Pocket (in UserLogicInt.Pocket.dll) Version: 1.0.4.0
Syntaxint ARGBBackColor { get; set; }
Property Value
Type:
Int32
RemarksThe dblColorFromRGB(red, green, blue) function is to be used to generate an RGB value
Examples
To set the background color to be Blue, set it using the dblColorFromRGB(red, green, blue) function:
TopBanner.ARGBColor = dblColorFromRGB(0, 0, 255)
See Also