Skip to content

Commit 1c88033

Browse files
committed
Documentation bug fixes
1 parent dd89ddb commit 1c88033

File tree

5 files changed

+12
-6
lines changed

5 files changed

+12
-6
lines changed

docs/ParameterShim.md

Lines changed: 6 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -31,25 +31,31 @@ Set the specified document parameter's value. If the parameter already exists i
3131
#### Syntax:
3232

3333
Numeric signature:
34+
3435
document.SetParameter(string parameterName, string parameterValue, string units, optional bool clobberFlag)
3536

3637
Text signature:
38+
3739
document.SetParameter(string parameterName, string parameterValue, optional bool clobberFlag)
3840

3941
Boolean signature:
42+
4043
document.SetParameter(string parameterName, bool parameterValue, optional bool clobberFlag)
4144

4245
#### Usage:
4346

4447
Set value for a numeric parameter:
48+
4549
Dim oDoc As Inventor.Document = ThisApplication.ActiveDocument
4650
oDoc.SetParameter("MyNumericParameter", "20.000", "in")
4751

4852
Set value for a text parameter:
53+
4954
Dim oDoc As Inventor.Document = ThisApplication.ActiveDocument
5055
oDoc.SetParameter("MyTextParameter", "Here we go!")
5156

5257
Set value for a boolean parameter:
58+
5359
Dim oDoc As Inventor.Document = ThisApplication.ActiveDocument
5460
oDoc.SetParameter("MyBooleanParameter", True)
5561

docs/PathShim.md

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,10 +1,10 @@
11
---
22
layout: default
3-
title: PathShim Class
3+
title: PathShim
44
nav_order:
55
---
66

7-
# PathShim Class
7+
# PathShim
88

99
## Methods
1010

docs/PropertyShim.md

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,10 +1,10 @@
11
---
22
layout: default
3-
title: PropertyShim Class
3+
title: PropertyShim
44
nav_order:
55
---
66

7-
# PropertyShim Class
7+
# PropertyShim
88

99
## Methods
1010

docs/StringShim.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -4,7 +4,7 @@ title: StringShim
44
nav_order:
55
---
66

7-
# StringShim Class
7+
# StringShim
88

99
## ToFractionStringRoundedUp
1010

docs/UiShim.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -4,7 +4,7 @@ title: UiShim
44
nav_order:
55
---
66

7-
# UiShim Class
7+
# UiShim
88

99
## GetActiveColorSchemeName
1010

0 commit comments

Comments
 (0)