QDataGridBase::OverrideRowStyle PHP Method

OverrideRowStyle() public method

the RowIndex and the DataGridRowStyle with which to override
public OverrideRowStyle ( $intRowIndex, $objStyle )
    public function OverrideRowStyle($intRowIndex, $objStyle)
    {
        try {
            $objStyle = QType::Cast($objStyle, "QDataGridRowStyle");
        } catch (QInvalidCastException $objExc) {
            $objExc->IncrementOffset();
            throw $objExc;
        }
        $this->objOverrideRowStyleArray[$intRowIndex] = $objStyle;
    }