how to set the option of the function aafTableAnn(probeids,chip,colnames=aaf.handler(chip=chip), widget=FALSE)

To set the options of the function `aafTableAnn()` with the given parameters `probeids`, `chip`, `colnames`, and `widget`, follow these steps:

1. Start by calling the function `aafTableAnn()` and passing the required parameters `probeids` and `chip`. For example:
```R
aafTableAnn(probeids, chip)
```

2. To set the value for the `colnames` parameter, provide the desired value as an argument. If you want to set it to the result of the function `aaf.handler()` with the given `chip` argument, use the following syntax:
```R
colnames = aaf.handler(chip = chip)
```

3. If you want to set the `widget` parameter to `FALSE`, simply include `widget = FALSE` as one of the arguments when calling the function. Here's an example:
```R
widget = FALSE
```

Putting it all together, to set the options of the `aafTableAnn()` function, use the following code:
```R
aafTableAnn(probeids, chip, colnames = aaf.handler(chip = chip), widget = FALSE)
```

Make sure to replace `probeids` and `chip` with the appropriate values or variables in your specific use case.