I have a string "Hello World"
I want to change the color of Hello to red using the setCMYKColorFillF function. I'm writing the string to a PDF file
I know I'll use to write to the pdf:
private PdfContentByte WriteTxt = null;
WriteTxt.setCMYKColorFillF(float Cyan, float Magenta, float Yellow, float Black);
WriteTxt.showTextAligned(int Align ,"Hello World", float x Position, float y Position, 0f);