Hi Gang,
I'm in the middle of a project (C# framework 4.5) where I'm converting some Excel VBA code that uses iGrid300
The version the company purchased (evidently a while ago) is 4.6
The code in question
For c = 1 To cRowDimInfo.count
If bStopColHeaderBackGround = False Then
.ColHeaderBackColor(c) = vbf_Grid_ColHeaderBackColour
If bStopRowHeaderBackGround = False Then
With .ColDefaultCell(c)
.oBackColor = vbf_Grid_ColHeaderBackColour
End With
End If
End If
.ColHeaderText(c) = cRowDimInfo(c).DimName
.ColHeaderTextFlags(c) = igTextCenter Or igTextVCenter Or igTextSingleLine
OK, I get the changes to the textflags and the like, BUT:
the question is - I can't find what has replaced
ColDefaultCell[c]
Basically, how do I set the default Style for a particular column?
Edited by moderator
2015-06-13T05:38:28Z
|
Reason: Igor/10Tec: Added code formatting