MCPcopy Create free account
hub / github.com/openclaw/gogcli / slidesTableCellTextState

Function slidesTableCellTextState

internal/cmd/slides_shared.go:170–180  ·  view source on GitHub ↗
(pres *slides.Presentation, objectID string, rowIndex, columnIndex int64)

Source from the content-addressed store, hash-verified

168}
169
170func slidesTableCellTextState(pres *slides.Presentation, objectID string, rowIndex, columnIndex int64) (bool, bool) {
171 for _, slide := range pres.Slides {
172 if slide == nil {
173 continue
174 }
175 if found, hasText := slidesTableCellStateInElements(slide.PageElements, objectID, rowIndex, columnIndex); found {
176 return true, hasText
177 }
178 }
179 return false, false
180}
181
182func slidesTableCellStateInElements(elements []*slides.PageElement, objectID string, rowIndex, columnIndex int64) (bool, bool) {
183 for _, el := range elements {

Callers 1

RunMethod · 0.85

Calls 1

Tested by

no test coverage detected