The Origin Forum
File Exchange
Try Origin for Free
The Origin Forum
Home | Profile | Register | Active Topics | Members | Search | FAQ | Send File to Tech support
Username:
Password:
Save Password
Forgot your Password? | Admin Options

 All Forums
 Origin Forum for Programming
 Forum for Origin C
 Change the Backgroundcolor from layers
 New Topic  Reply to Topic
 Printer Friendly
Author Previous Topic Topic Next Topic Lock Topic Edit Topic Delete Topic New Topic Reply to Topic

marco.zorcic

Germany
Posts

Posted - 11/10/2006 :  03:46:02 AM  Show Profile  Edit Topic  Reply with Quote  View user's IP address  Delete Topic
@ Deanna

Thank you ,
this is exactly what I need!!!




Edited by - marco.zorcic on 11/10/2006 05:32:38 AM

Deanna

China
Posts

Posted - 11/10/2006 :  04:34:24 AM  Show Profile  Edit Reply  Reply with Quote  View user's IP address  Delete Reply
Please refer to Note 1 in this article:
https://www.originlab.com/www/support/resultstech.aspx?ID=647&language=English.

The below example shows how to set the background color to a custom color. I hope you will find it useful.


void test5270()
{
GraphLayer gl = Project.ActiveLayer();
if ( !gl.IsValid() ) return;

int r = 0, g = 255, b = 128;
TreeNode tr = gl.Background.Color;
if ( tr.IsValid() )
{
tr.nVal = r + 256*g + 65536*b + 16777216;
gl.Background.Color = tr;
}
}


Deanna
OriginLab Technical Services
Go to Top of Page
  Previous Topic Topic Next Topic Lock Topic Edit Topic Delete Topic New Topic Reply to Topic
 New Topic  Reply to Topic
 Printer Friendly
Jump To:
The Origin Forum © 2020 Originlab Corporation Go To Top Of Page
Snitz Forums 2000