Class NewSpaceArgument
Class used for Space Argument.
Implements
System.ICloneable
Inherited Members
System.Object.Equals(System.Object)
System.Object.Equals(System.Object, System.Object)
System.Object.GetHashCode()
System.Object.GetType()
System.Object.MemberwiseClone()
System.Object.ReferenceEquals(System.Object, System.Object)
System.Object.ToString()
Namespace: Syncfusion.XlsIO.Implementation.TemplateMarkers
Assembly: Syncfusion.XlsIO.Base.dll
Syntax
[TemplateMarker]
public class NewSpaceArgument : MarkerArgument, ICloneable
Constructors
NewSpaceArgument()
Initializes a new instance of the NewSpaceArgument class.
Declaration
public NewSpaceArgument()
Properties
ArgumentChecker
Regular expression used to check argument. Read-only.
Declaration
protected override Regex ArgumentChecker { get; }
Property Value
Type |
---|
System.Text.RegularExpressions.Regex |
Overrides
IsApplyable
Indicates whether marker should be applies for each marker value. Read-only.
Declaration
public override bool IsApplyable { get; }
Property Value
Type |
---|
System.Boolean |
Overrides
Priority
Returns priority of the argument. Read-only.
Declaration
public override int Priority { get; }
Property Value
Type |
---|
System.Int32 |
Overrides
Methods
ApplyArgument(IWorksheet, Point, ref Int32, ref Int32, IList<Int64>, MarkerOptionsImpl, Int32)
Applies argument to the marker at the specified position and to the list of cells with markers.
Declaration
public override void ApplyArgument(IWorksheet sheet, Point pOldPosition, ref int iRow, ref int iColumn, IList<long> arrMarkerCells, MarkerOptionsImpl options, int count)
Parameters
Type | Name | Description |
---|---|---|
IWorksheet | sheet | Worksheet that contains cell to apply marker argument to. |
System.Drawing.Point | pOldPosition | Previous cell position. |
System.Int32 | iRow | One-based row index of the cell to apply marker argument to. |
System.Int32 | iColumn | One-based column index of the cell to apply marker argument to. |
System.Collections.Generic.IList<System.Int64> | arrMarkerCells | List of cells with markers. |
MarkerOptionsImpl | options | Marker options. |
System.Int32 | count |
Overrides
Parse(Match)
Parses regular expression match.
Declaration
protected override MarkerArgument Parse(Match m)
Parameters
Type | Name | Description |
---|---|---|
System.Text.RegularExpressions.Match | m | Match to parse. |
Returns
Type | Description |
---|---|
MarkerArgument | Parsed argument of the same type as this instance is. |
Overrides
Implements
System.ICloneable