Oh, I still don't see that in the picture. But yes, you can define solidity in terms of 4 functions, which describe the surface of the tile from 4 directions. Normally these 4 functions are consistent with each other, but sometimes you can get an interesting effect by making them different. For example, if GetTopSolidPixel returns 0 (the equivalent of "solid immediately at the edge") for all values and the other 3 functions return the equivalent of "empty" for all the other sides, you get a tile that the player can land on from the top, but can also walk through sideways in both directions and through which the player can jump upward.
These functions are defined in the file TileShapes.cs in the project's source code. By default there are only 11 shapes:
Empty
Solid
Uphill
Downhill
UpCeiling
DownCeiling
Half-Uphill Right half
Half-Uphill Left half
Half-Downhill left half
Half-Downhill right half
Top-solid
But you can add as many shapes as you like to this file and then (after re-compiling the project) it will be possible to map the custom shapes in a solidity definition.
how old is your computer?