-
Notifications
You must be signed in to change notification settings - Fork 1
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
- Loading branch information
1 parent
1f50a9f
commit daec975
Showing
6 changed files
with
222 additions
and
0 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,6 @@ | ||
<?xml version="1.0" encoding="utf-8" ?> | ||
<configuration> | ||
<startup> | ||
<supportedRuntime version="v4.0" sku=".NETFramework,Version=v4.7.2" /> | ||
</startup> | ||
</configuration> |
115 changes: 115 additions & 0 deletions
115
TopLeftPositionOfString/TopLeftPositionOfString/Program.cs
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,115 @@ | ||
using Aspose.Words; | ||
using Aspose.Words.Layout; | ||
using Aspose.Words.Replacing; | ||
using System; | ||
using System.Collections; | ||
using System.Collections.Generic; | ||
using System.Linq; | ||
using System.Text; | ||
using System.Text.RegularExpressions; | ||
using System.Threading.Tasks; | ||
|
||
namespace TopLeftPositionOfString | ||
{ | ||
class Program | ||
{ | ||
static void Main(string[] args) | ||
{ | ||
ApplyLicense(); | ||
|
||
Document doc = new Document("eSignature.Test.02.docx"); | ||
//Find the text between <<>> and insert bookmark | ||
doc.Range.Replace(new Regex(@"\<<.*?\>>"), "", new FindReplaceOptions() { ReplacingCallback = new FindAndInsertBookmark() }); | ||
|
||
LayoutCollector layoutCollector = new LayoutCollector(doc); | ||
LayoutEnumerator layoutEnumerator = new LayoutEnumerator(doc); | ||
|
||
//Display the left top position of text between angle bracket. | ||
foreach (Bookmark bookmark in doc.Range.Bookmarks) | ||
{ | ||
if (bookmark.Name.StartsWith("bookmark_")) | ||
{ | ||
layoutEnumerator.Current = layoutCollector.GetEntity(bookmark.BookmarkStart); | ||
Console.WriteLine(" --> Left : " + layoutEnumerator.Rectangle.Left + " Top : " + layoutEnumerator.Rectangle.Top); | ||
} | ||
} | ||
doc.Save("20.10.docx"); | ||
|
||
System.Diagnostics.Process.Start("20.10.docx"); | ||
} | ||
|
||
public class FindAndInsertBookmark : IReplacingCallback | ||
{ | ||
int i = 1; | ||
DocumentBuilder builder; | ||
ReplaceAction IReplacingCallback.Replacing(ReplacingArgs e) | ||
{ | ||
// This is a Run node that contains either the beginning or the complete match. | ||
Node currentNode = e.MatchNode; | ||
|
||
if (builder == null) | ||
builder = new DocumentBuilder((Document)currentNode.Document); | ||
|
||
// The first (and may be the only) run can contain text before the match, | ||
// in this case it is necessary to split the run. | ||
if (e.MatchOffset > 0) | ||
currentNode = SplitRun((Run)currentNode, e.MatchOffset); | ||
|
||
ArrayList runs = new ArrayList(); | ||
|
||
// Find all runs that contain parts of the match string. | ||
int remainingLength = e.Match.Value.Length; | ||
while ( | ||
(remainingLength > 0) && | ||
(currentNode != null) && | ||
(currentNode.GetText().Length <= remainingLength)) | ||
{ | ||
runs.Add(currentNode); | ||
remainingLength = remainingLength - currentNode.GetText().Length; | ||
|
||
// Select the next Run node. | ||
// Have to loop because there could be other nodes such as BookmarkStart etc. | ||
do | ||
{ | ||
currentNode = currentNode.NextSibling; | ||
} | ||
while ((currentNode != null) && (currentNode.NodeType != NodeType.Run)); | ||
} | ||
|
||
// Split the last run that contains the match if there is any text left. | ||
if ((currentNode != null) && (remainingLength > 0)) | ||
{ | ||
SplitRun((Run)currentNode, remainingLength); | ||
runs.Add(currentNode); | ||
} | ||
|
||
Run run = (Run)runs[0]; | ||
builder.MoveTo(run); | ||
builder.StartBookmark("bookmark_" + i); | ||
builder.EndBookmark("bookmark_" + i); | ||
i++; ; | ||
|
||
// Signal to the replace engine to do nothing because we have already done all what we wanted. | ||
return ReplaceAction.Skip; | ||
} | ||
|
||
/// <summary> | ||
/// Splits text of the specified run into two runs. | ||
/// Inserts the new run just after the specified run. | ||
/// </summary> | ||
private static Run SplitRun(Run run, int position) | ||
{ | ||
Run afterRun = (Run)run.Clone(true); | ||
afterRun.Text = run.Text.Substring(position); | ||
run.Text = run.Text.Substring(0, position); | ||
run.ParentNode.InsertAfter(afterRun, run); | ||
return afterRun; | ||
} | ||
} | ||
private static void ApplyLicense() | ||
{ | ||
Aspose.Words.License lic = new Aspose.Words.License(); | ||
lic.SetLicense(@"Aspose.Words.lic"); | ||
} | ||
} | ||
} |
36 changes: 36 additions & 0 deletions
36
TopLeftPositionOfString/TopLeftPositionOfString/Properties/AssemblyInfo.cs
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,36 @@ | ||
using System.Reflection; | ||
using System.Runtime.CompilerServices; | ||
using System.Runtime.InteropServices; | ||
|
||
// General Information about an assembly is controlled through the following | ||
// set of attributes. Change these attribute values to modify the information | ||
// associated with an assembly. | ||
[assembly: AssemblyTitle("TopLeftPositionOfString")] | ||
[assembly: AssemblyDescription("")] | ||
[assembly: AssemblyConfiguration("")] | ||
[assembly: AssemblyCompany("")] | ||
[assembly: AssemblyProduct("TopLeftPositionOfString")] | ||
[assembly: AssemblyCopyright("Copyright © 2020")] | ||
[assembly: AssemblyTrademark("")] | ||
[assembly: AssemblyCulture("")] | ||
|
||
// Setting ComVisible to false makes the types in this assembly not visible | ||
// to COM components. If you need to access a type in this assembly from | ||
// COM, set the ComVisible attribute to true on that type. | ||
[assembly: ComVisible(false)] | ||
|
||
// The following GUID is for the ID of the typelib if this project is exposed to COM | ||
[assembly: Guid("ad234b75-83c2-479f-95ea-fe725ce9abd2")] | ||
|
||
// Version information for an assembly consists of the following four values: | ||
// | ||
// Major Version | ||
// Minor Version | ||
// Build Number | ||
// Revision | ||
// | ||
// You can specify all the values or you can default the Build and Revision Numbers | ||
// by using the '*' as shown below: | ||
// [assembly: AssemblyVersion("1.0.*")] | ||
[assembly: AssemblyVersion("1.0.0.0")] | ||
[assembly: AssemblyFileVersion("1.0.0.0")] |
61 changes: 61 additions & 0 deletions
61
TopLeftPositionOfString/TopLeftPositionOfString/TopLeftPositionOfString.csproj
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,61 @@ | ||
<?xml version="1.0" encoding="utf-8"?> | ||
<Project ToolsVersion="15.0" xmlns="http://schemas.microsoft.com/developer/msbuild/2003"> | ||
<Import Project="$(MSBuildExtensionsPath)\$(MSBuildToolsVersion)\Microsoft.Common.props" Condition="Exists('$(MSBuildExtensionsPath)\$(MSBuildToolsVersion)\Microsoft.Common.props')" /> | ||
<PropertyGroup> | ||
<Configuration Condition=" '$(Configuration)' == '' ">Debug</Configuration> | ||
<Platform Condition=" '$(Platform)' == '' ">AnyCPU</Platform> | ||
<ProjectGuid>{AD234B75-83C2-479F-95EA-FE725CE9ABD2}</ProjectGuid> | ||
<OutputType>Exe</OutputType> | ||
<RootNamespace>TopLeftPositionOfString</RootNamespace> | ||
<AssemblyName>TopLeftPositionOfString</AssemblyName> | ||
<TargetFrameworkVersion>v4.7.2</TargetFrameworkVersion> | ||
<FileAlignment>512</FileAlignment> | ||
<AutoGenerateBindingRedirects>true</AutoGenerateBindingRedirects> | ||
<Deterministic>true</Deterministic> | ||
</PropertyGroup> | ||
<PropertyGroup Condition=" '$(Configuration)|$(Platform)' == 'Debug|AnyCPU' "> | ||
<PlatformTarget>AnyCPU</PlatformTarget> | ||
<DebugSymbols>true</DebugSymbols> | ||
<DebugType>full</DebugType> | ||
<Optimize>false</Optimize> | ||
<OutputPath>bin\Debug\</OutputPath> | ||
<DefineConstants>DEBUG;TRACE</DefineConstants> | ||
<ErrorReport>prompt</ErrorReport> | ||
<WarningLevel>4</WarningLevel> | ||
</PropertyGroup> | ||
<PropertyGroup Condition=" '$(Configuration)|$(Platform)' == 'Release|AnyCPU' "> | ||
<PlatformTarget>AnyCPU</PlatformTarget> | ||
<DebugType>pdbonly</DebugType> | ||
<Optimize>true</Optimize> | ||
<OutputPath>bin\Release\</OutputPath> | ||
<DefineConstants>TRACE</DefineConstants> | ||
<ErrorReport>prompt</ErrorReport> | ||
<WarningLevel>4</WarningLevel> | ||
</PropertyGroup> | ||
<ItemGroup> | ||
<Reference Include="Aspose.Words, Version=20.10.0.0, Culture=neutral, PublicKeyToken=716fcc553a201e56, processorArchitecture=MSIL"> | ||
<HintPath>..\packages\Aspose.Words.20.10.0\lib\net461\Aspose.Words.dll</HintPath> | ||
</Reference> | ||
<Reference Include="Aspose.Words.Pdf2Word, Version=20.10.0.0, Culture=neutral, PublicKeyToken=716fcc553a201e56, processorArchitecture=MSIL"> | ||
<HintPath>..\packages\Aspose.Words.20.10.0\lib\net461\Aspose.Words.Pdf2Word.dll</HintPath> | ||
</Reference> | ||
<Reference Include="System" /> | ||
<Reference Include="System.Core" /> | ||
<Reference Include="System.Drawing" /> | ||
<Reference Include="System.Xml.Linq" /> | ||
<Reference Include="System.Data.DataSetExtensions" /> | ||
<Reference Include="Microsoft.CSharp" /> | ||
<Reference Include="System.Data" /> | ||
<Reference Include="System.Net.Http" /> | ||
<Reference Include="System.Xml" /> | ||
</ItemGroup> | ||
<ItemGroup> | ||
<Compile Include="Program.cs" /> | ||
<Compile Include="Properties\AssemblyInfo.cs" /> | ||
</ItemGroup> | ||
<ItemGroup> | ||
<None Include="App.config" /> | ||
<None Include="packages.config" /> | ||
</ItemGroup> | ||
<Import Project="$(MSBuildToolsPath)\Microsoft.CSharp.targets" /> | ||
</Project> |
Binary file added
BIN
+18.2 KB
TopLeftPositionOfString/TopLeftPositionOfString/bin/Debug/eSignature.Test.02.docx
Binary file not shown.
4 changes: 4 additions & 0 deletions
4
TopLeftPositionOfString/TopLeftPositionOfString/packages.config
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,4 @@ | ||
<?xml version="1.0" encoding="utf-8"?> | ||
<packages> | ||
<package id="Aspose.Words" version="20.10.0" targetFramework="net472" /> | ||
</packages> |