{description}
{excerpt}Sets or returns the whether the text will be justfied horizontally, when the Horizontal Alignment is set to Distributed{excerpt}
{signature:C#}
 public boolean JustifyDistributed{ get; set; }
{signature}{signature:vb.net}
Public Property JustifyDistributed() As Boolean
{signature}
{example}{code:csharp|title=C#}

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

          //--- Set Justify Distributed
          styl.JustifyDistributed = true;
        {code}
{code:vb.net|title=vb.net}

          '--- Get Justify Distributed
          Dim justifyDist As Boolean = styl.JustifyDistributed

          '--- Set Justify Distributed
          styl.JustifyDistributed = True
        {code}
{example}