Lines Matching refs:aCellProtection
535 util::CellProtection aCellProtection; in setLocked() local
537 mxPropertySet->getPropertyValue(sCellProt) >>= aCellProtection; in setLocked()
538 aCellProtection.IsLocked = bIsLocked; in setLocked()
539 mxPropertySet->setPropertyValue(sCellProt, uno::makeAny( aCellProtection ) ); in setLocked()
555 util::CellProtection aCellProtection; in setFormulaHidden() local
557 mxPropertySet->getPropertyValue(sCellProt) >>= aCellProtection; in setFormulaHidden()
558 aCellProtection.IsFormulaHidden = bIsFormulaHidden; in setFormulaHidden()
559 mxPropertySet->setPropertyValue(sCellProt,uno::makeAny(aCellProtection)); in setFormulaHidden()
571 uno::Any aCellProtection = aNULL(); in getLocked() local
584 aCellProtection = uno::makeAny(rProtAttr.GetProtection()); in getLocked()
589 mxPropertySet->getPropertyValue(sCellProt) >>= aCellProtection; in getLocked()
590 aCellProtection = uno::makeAny( cellProtection.IsLocked ); in getLocked()
598 return aCellProtection; in getLocked()
621 util::CellProtection aCellProtection; in getFormulaHidden() local
622 mxPropertySet->getPropertyValue(sCellProt) >>= aCellProtection; in getFormulaHidden()
623 aBoolRet = uno::makeAny( aCellProtection.IsFormulaHidden ); in getFormulaHidden()