Skip to content

Commit

Permalink
Remove rightIndent from the docs (fix #9511)
Browse files Browse the repository at this point in the history
  • Loading branch information
RomanTsukanov committed Feb 25, 2025
1 parent 9cd581d commit 024ce55
Showing 1 changed file with 1 addition and 6 deletions.
7 changes: 1 addition & 6 deletions packages/survey-core/src/survey-element.ts
Original file line number Diff line number Diff line change
Expand Up @@ -1014,19 +1014,14 @@ export class SurveyElement<E = any> extends SurveyElementCore implements ISurvey
}

/**
* Increases or decreases an indent of survey element content from the left edge. Accepts positive integer values and 0. Does not apply in the Default V2 theme.
* @see rightIndent
* Increases or decreases an indent of survey element content from the left edge. Accepts positive integer values and 0.
*/
public get indent(): number {
return this.getPropertyValue("indent");
}
public set indent(val: number) {
this.setPropertyValue("indent", val);
}
/**
* Increases or decreases an indent of survey element content from the right edge. Accepts positive integer values and 0. Does not apply in the Default V2 theme.
* @see indent
*/
public get rightIndent(): number {
return this.getPropertyValue("rightIndent", 0);
}
Expand Down

0 comments on commit 024ce55

Please sign in to comment.