Support Board
Date/Time: Mon, 13 Jan 2025 02:25:30 +0000
Post From: ASCIL: sc.TitleBarName
[2017-03-20 03:33:00] |
6c7574686572 - Posts: 20 |
I just checked and it was outside the defaults section. I also made a test study to confirm that the functionality remains the same. Actually the following happens after adding this study: 1) The chart title bar is set to blank 2) If I go to Chart Settings > Advanced Settings and enter anything in the "Title Bar Name" the result is "CHAR", then 1 second later it is "CHA", and it continues to delete each character one by one.. SCSFExport scsf_TitleBarTest(SCStudyInterfaceRef sc)
{ if (sc.SetDefaults) { // Set the configuration and defaults sc.GraphName = "TitleBarTest"; sc.AutoLoop = 0; sc.GraphRegion = 0; // During development set this flag to 1, so the DLL can be modified. When development is completed, set it to 0 to improve performance. sc.FreeDLL = 1; return; } // Do data processing if (sc.HideStudy)//do nothing if study is hidden return; sc.TitleBarName = "CHART"; } Date Time Of Last Edit: 2017-03-20 03:33:37
|