I am trying to set my font color to white for a TextFrame object on a PowerPoint slide. The RGB code for white is 255 255 255. The RGB property of the TextFrame object's font is an integer type. What I have below does not return a white font color. Does anyone have an answer to this mystery?
With .Item(i).TextFrame.TextRange
.Font.Name = "Verdana"
.Font.Size = 36
.Font.Color.RGB = 255255255
.Font.Shadow = Office.MsoTriState.msoTrue
End With
With .Item(i).TextFrame.TextRange
.Font.Name = "Verdana"
.Font.Size = 36
.Font.Color.RGB = 255255255
.Font.Shadow = Office.MsoTriState.msoTrue
End With