Lines Matching refs:aGridOpt

293 				ScGridOptions aGridOpt(aViewOpt.GetGridOptions());  in setPropertyValue()  local
295 aGridOpt.SetUseGridSnap( ScUnoHelpFunctions::GetBoolFromAny( aValue ) ); in setPropertyValue()
297 aGridOpt.SetGridVisible( ScUnoHelpFunctions::GetBoolFromAny( aValue ) ); in setPropertyValue()
299aGridOpt.SetFldDrawX( static_cast <sal_uInt32> ( ScUnoHelpFunctions::GetInt32FromAny( aValue ) ) ); in setPropertyValue()
301aGridOpt.SetFldDrawY( static_cast <sal_uInt32> ( ScUnoHelpFunctions::GetInt32FromAny( aValue ) ) ); in setPropertyValue()
303aGridOpt.SetFldDivisionX( static_cast <sal_uInt32> ( ScUnoHelpFunctions::GetInt32FromAny( aValue )… in setPropertyValue()
305aGridOpt.SetFldDivisionY( static_cast <sal_uInt32> ( ScUnoHelpFunctions::GetInt32FromAny( aValue )… in setPropertyValue()
307 aGridOpt.SetSynchronize( ScUnoHelpFunctions::GetBoolFromAny( aValue ) ); in setPropertyValue()
310 aViewOpt.SetGridOptions(aGridOpt); in setPropertyValue()
428 const ScGridOptions& aGridOpt = aViewOpt.GetGridOptions(); in getPropertyValue() local
430 ScUnoHelpFunctions::SetBoolInAny( aRet, aGridOpt.GetUseGridSnap() ); in getPropertyValue()
432 ScUnoHelpFunctions::SetBoolInAny( aRet, aGridOpt.GetGridVisible() ); in getPropertyValue()
434 aRet <<= static_cast<sal_Int32> ( aGridOpt.GetFldDrawX() ); in getPropertyValue()
436 aRet <<= static_cast<sal_Int32> ( aGridOpt.GetFldDrawY() ); in getPropertyValue()
438 aRet <<= static_cast<sal_Int32> ( aGridOpt.GetFldDivisionX() ); in getPropertyValue()
440 aRet <<= static_cast<sal_Int32> ( aGridOpt.GetFldDivisionY() ); in getPropertyValue()
442 ScUnoHelpFunctions::SetBoolInAny( aRet, aGridOpt.GetSynchronize() ); in getPropertyValue()