Page tree

Versions Compared

Key

  • This line was added.
  • This line was removed.
  • Formatting was changed.
Comment: Migrated to Confluence 4.0
Description

Excerpt

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

{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}
Signature
C#C#
Wiki Markup
{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}{signature:vb.net
vb.net
}
Public Property JustifyDistributed() As Boolean
Example
Code Block
csharpcsharp
titleC#
Code Block
vb.nettitle