Hello,
is it possible to get the RGB-code of the Backgroundcolor of the SmartArtNodes?
Thats the code, but it does not work:
Office.SmartArtNodes allNodes = smartArt.SmartArt.AllNodes;
foreach (Office.SmartArtNode node in allNodes)
{
string text = "";
if (node.TextFrame2.HasText == Office.MsoTriState.msoTrue)
{
text = GetMainPointDesc();
System.Diagnostics.Debug.WriteLine(node.TextFrame2.TextRange.Text);
System.Diagnostics.Debug.WriteLine(node.Shapes.BackgroundStyle); //good to get single- or mixBackgoundcolor
System.Diagnostics.Debug.WriteLine(node.Shapes.Fill.BackColor.RGB);
}
}
"node.Shapes.Fill.BackColor.RGB" it only works when i use the SmartArtSubcategory "list", but not when i use the subcategory "prozess".
Have anyone an idea???