Sets or returns the whether the text will be justfied horizontally, when the Horizontal Alignment is set to Distributed

<p> public boolean JustifyDistributed{ get; set; }</p>
<p>Public Property JustifyDistributed() As Boolean</p>

          //--- Get Justify Distributed
          bool justifyDist = styl.JustifyDistributed;

          //--- Set Justify Distributed
          styl.JustifyDistributed = true;
        
          '--- Get Justify Distributed
          Dim justifyDist As Boolean = styl.JustifyDistributed

          '--- Set Justify Distributed
          styl.JustifyDistributed = True