We are using version 4.4.3.1 of aspose.cells
I'm trying to read the linkedcell property from an existing excelworkbook(created using aspose)
However when I cast the shape to a radiobutton the linkedcell property is nothing.
Can you tell me if this property is supported for radiobuttons.
I did read a post on here that the linkedcell property is only supported for checkboxes
for example
For Each shape As Aspose.Cells.Shape In excelsheet.Shapes
If shape.MsoDrawingType = Aspose.Cells.MsoDrawingType.RadioButton Then
Dim rButton As Aspose.Cells.RadioButton = CType(shape, Aspose.Cells.RadioButton)
If rButton.LowerRightColumn = startPoint.X And rButton.LowerRightRow = startPoint.Y Then
strValue = rButton.LinkedCell.ToString
Exit For
End If
End If
Next
Regards
Steve