RegularExpressions Object
On this page:
Description
This collection is accessed via the Preferences Object. It corresponds to the information configured on the Line Expressions options page. Each entry on that page corresponds to a RegularExpression Object member of this collection. Each such member represents a regular expression that is used to match unimportant text that you wish Merge to ignore when performing comparisons.
Properties
Count read-only, IRegularExpressions
The number of items in this collection.
IDL |
[propget] HRESULT Count([out, retval] long* pValue)
|
---|---|
.NET | Int32 Count[get] |
Item read-only, IRegularExpressions
Returns the item (not a copy) at the given index.
IDL |
[propget] HRESULT Item(
|
---|---|
.NET | RegularExpression
get_Item( |
index
A zero-based integer index into the collection.
Methods
Add IRegularExpressions
Adds a copy of the item regularExpression
to the end of the collection. Returns the index of the added item.
IDL |
HRESULT Add(
|
---|---|
.NET | Int32 Add( |
regularExpression
The item to be added to the collection.
Remove IRegularExpressions
Removes the item at the specified index.
IDL |
HRESULT Remove(
|
---|---|
.NET | void Remove( |
index
The index of the item to remove.