View Individual border width?

Hi.

I know that, when all of the cell’s borders are the same width, the width of the borders is displayed under the width section under Format > Cells > Borders tab.

However, I want to know how to view the width of an individual border when it differs from the others e.g the width of the top border in the cell is 2pt and the others are 1pt; how would I know the width of each individual border?
Selecting each different border under Format > Cells > Borders tab doesn’t change the figure in the width section, regardless of the actual width of the selected border/s.

PLUS ANOTHER RELATED BUT DIFFERENT QUESTION, while you’re here… it is best explained with these two images (in order):

(edit: activated screenshots)

Hello @appreciatethehelp,

I could not find a place in the GUI that shows the values for the individual borderline widths of a cell.
However you could use the following macro to obtain these values:

Function getCellBorderLineWidths( strCellName As String )
REM Returns an array containing the Line Widths in 100thMM for the ( T, L, B, R ) Borders of the specified Cell.
REM <strCellName>:	pass a Cell address such as "A1" or "$A$1".
	Dim oSheet As Object, oCell As Object, oBorder As Object
	Dim lWidth(3) As Long, i As Integer
	oSheet = ThisComponent.getCurrentController().getActiveSheet()
	oCell = oSheet.getCellRangeByName( strCellName )
	For Each oBorder In Array( oCell.TopBorder2, oCell.LeftBorder2, oCell.BottomBorder2, oCell.RightBorder2 )	
		lWidth( i ) =  oBorder.LineWidth
		If lWidth(i) = 0 Then lWidth(i) = oBorder.InnerLineWidth + oBorder.LineDistance + oBorder.OuterLineWidth
		i = i + 1
	Next
	getCellBorderLineWidths = lWidth()
End Function