Documentation > CMS Template API Library > WysiwygParams > AddIndentGroup(FeatureType)
AddIndentGroup
Adds indent and outdent buttons
public System.Void AddIndentGroup(FeatureType)
Parameters
Name | Description | Type |
---|---|---|
endSeparator | Optional: defaults to Separator. Set to FeatureType.None if using at the end of the toolbar. | CrownPeak.CMSAPI.FeatureType |
Code Example
C#
Sample:
WysiwygParams wParams = new WysiwygParams(); wParams.AddColorGroup(); wParams.AddIndentGroup(); wParams.AddCutPasteGroup(); wParams.AddFontGroup(); Input.ShowWysiwyg("Page Body", "page_body", wParams);