0 열의 텍스트를 기반으로하는 범위에 대한 OpenOffice 기본 변경 배경색


1

열 0 "A"의 각 셀을 테스트하여 특정 텍스트 "Budget" "Living" "Savings"가 있는지 확인하고 행 배경색을 각각의 특정 색상으로 변경하는지 확인하려고합니다.

텍스트로 마지막 행을 확인할 수 있지만 "A"열을 테스트 할 수 없습니다. 내가 얻은 한 아래 코드를 첨부했습니다.

sub FindLastRow
rem ----------------------------------------------------------------------
rem define variables
dim document   as object
dim dispatcher as object
dim oSheet
Dim oCell 
Dim x

rem ----------------------------------------------------------------------
rem get access to the document
document   = ThisComponent.CurrentController.Frame
dispatcher = createUnoService("com.sun.star.frame.DispatchHelper")

rem ----------------------------------------------------------------------
dim args2(0) as new com.sun.star.beans.PropertyValue
args2(0).Name = "ToPoint"
args2(0).Value = "$D$65536"

dispatcher.executeDispatch(document, ".uno:GoToCell", "", 0, args2())

dim args7(1) as new com.sun.star.beans.PropertyValue
args7(0).Name = "By"
args7(0).Value = 1
args7(1).Name = "Sel"
args7(1).Value = false

dispatcher.executeDispatch(document, ".uno:GoUpToStartOfData", "", 0, args7())
dim oActiveCell 
dim oConv
oActiveCell = ThisComponent.CurrentSelection
x = oActiveCell.getCellAddress().Row

print x

Cell.String = "a" & oActiveCell.getCellAddress().Row
Cell.string = "budget"

print Cell.string

if cell.string="Budget" then
print x
end if
당사 사이트를 사용함과 동시에 당사의 쿠키 정책개인정보 보호정책을 읽고 이해하였음을 인정하는 것으로 간주합니다.
Licensed under cc by-sa 3.0 with attribution required.