Skip to content

Commit

Permalink
Changed command descriptions
Browse files Browse the repository at this point in the history
  • Loading branch information
openbots-ff committed Mar 17, 2020
1 parent eb7af74 commit 5b5adf0
Show file tree
Hide file tree
Showing 7 changed files with 11 additions and 11 deletions.
4 changes: 2 additions & 2 deletions taskt/Core/Automation/Commands/WordAppendDataTableCommand.cs
Original file line number Diff line number Diff line change
Expand Up @@ -13,8 +13,8 @@ namespace taskt.Core.Automation.Commands
{
[Serializable]
[Attributes.ClassAttributes.Group("Word Commands")]
[Attributes.ClassAttributes.Description("This command appends text to a word document.")]
[Attributes.ClassAttributes.UsesDescription("Use this command when you want to append text to a specific document.")]
[Attributes.ClassAttributes.Description("This command appends a datatable to a word document.")]
[Attributes.ClassAttributes.UsesDescription("Use this command when you want to append a datatable to a specific document.")]
[Attributes.ClassAttributes.ImplementationDescription("This command implements Word Interop to achieve automation.")]
public class WordAppendDataTableCommand : ScriptCommand
{
Expand Down
4 changes: 2 additions & 2 deletions taskt/Core/Automation/Commands/WordAppendImageCommand.cs
Original file line number Diff line number Diff line change
Expand Up @@ -13,8 +13,8 @@ namespace taskt.Core.Automation.Commands
{
[Serializable]
[Attributes.ClassAttributes.Group("Word Commands")]
[Attributes.ClassAttributes.Description("This command appends text to a word document.")]
[Attributes.ClassAttributes.UsesDescription("Use this command when you want to append text to a specific document.")]
[Attributes.ClassAttributes.Description("This command appends an image to a word document.")]
[Attributes.ClassAttributes.UsesDescription("Use this command when you want to append an image to a specific document.")]
[Attributes.ClassAttributes.ImplementationDescription("This command implements Word Interop to achieve automation.")]
public class WordAppendImageCommand : ScriptCommand
{
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -11,7 +11,7 @@ namespace taskt.Core.Automation.Commands

[Serializable]
[Attributes.ClassAttributes.Group("Word Commands")]
[Attributes.ClassAttributes.Description("This command opens the Word Application.")]
[Attributes.ClassAttributes.Description("This command creates a Word Application.")]
[Attributes.ClassAttributes.UsesDescription("Use this command when you want to launch a new instance of Word.")]
[Attributes.ClassAttributes.ImplementationDescription("This command implements Word Interop to achieve automation.")]
public class WordCreateApplicationCommand : ScriptCommand
Expand Down
4 changes: 2 additions & 2 deletions taskt/Core/Automation/Commands/WordExportToPDFCommand.cs
Original file line number Diff line number Diff line change
Expand Up @@ -10,8 +10,8 @@ namespace taskt.Core.Automation.Commands
{
[Serializable]
[Attributes.ClassAttributes.Group("Word Commands")]
[Attributes.ClassAttributes.Description("This command allows you to save an Word document.")]
[Attributes.ClassAttributes.UsesDescription("Use this command when you want to save a document to a file.")]
[Attributes.ClassAttributes.Description("This command allows you to export a Word document to a PDF.")]
[Attributes.ClassAttributes.UsesDescription("Use this command when you want to save a document to a PDF.")]
[Attributes.ClassAttributes.ImplementationDescription("This command implements Word Interop to achieve automation.")]
public class WordExportToPDFCommand : ScriptCommand
{
Expand Down
2 changes: 1 addition & 1 deletion taskt/Core/Automation/Commands/WordReadDocumentCommand.cs
Original file line number Diff line number Diff line change
Expand Up @@ -10,7 +10,7 @@ namespace taskt.Core.Automation.Commands
{
[Serializable]
[Attributes.ClassAttributes.Group("Word Commands")]
[Attributes.ClassAttributes.Description("This command allows you to save an Word document.")]
[Attributes.ClassAttributes.Description("This command allows you to save a Word document.")]
[Attributes.ClassAttributes.UsesDescription("Use this command when you want to save changes to a document.")]
[Attributes.ClassAttributes.ImplementationDescription("This command implements Word Interop to achieve automation.")]
public class WordReadDocumentCommand : ScriptCommand
Expand Down
4 changes: 2 additions & 2 deletions taskt/Core/Automation/Commands/WordReplaceTextCommand.cs
Original file line number Diff line number Diff line change
Expand Up @@ -10,8 +10,8 @@ namespace taskt.Core.Automation.Commands
{
[Serializable]
[Attributes.ClassAttributes.Group("Word Commands")]
[Attributes.ClassAttributes.Description("This command allows you to save an Word document.")]
[Attributes.ClassAttributes.UsesDescription("Use this command when you want to save changes to a document.")]
[Attributes.ClassAttributes.Description("This command allows you to replace text in a Word document.")]
[Attributes.ClassAttributes.UsesDescription("Use this command when you want to replace text in a document.")]
[Attributes.ClassAttributes.ImplementationDescription("This command implements Word Interop to achieve automation.")]
public class WordReplaceTextCommand : ScriptCommand
{
Expand Down
2 changes: 1 addition & 1 deletion taskt/Core/Automation/Commands/WordSaveCommand.cs
Original file line number Diff line number Diff line change
Expand Up @@ -9,7 +9,7 @@ namespace taskt.Core.Automation.Commands
{
[Serializable]
[Attributes.ClassAttributes.Group("Word Commands")]
[Attributes.ClassAttributes.Description("This command allows you to save an Word document.")]
[Attributes.ClassAttributes.Description("This command allows you to save a Word document.")]
[Attributes.ClassAttributes.UsesDescription("Use this command when you want to save changes to a document.")]
[Attributes.ClassAttributes.ImplementationDescription("This command implements Word Interop to achieve automation.")]
public class WordSaveCommand : ScriptCommand
Expand Down

0 comments on commit 5b5adf0

Please sign in to comment.