Skip to content

Revert trademark symbol in unwanted places #664

New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Open
wants to merge 1 commit into
base: development
Choose a base branch
from
Open
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
Original file line number Diff line number Diff line change
Expand Up @@ -47,7 +47,7 @@ N> If the **Application.Designer.vb** file is not included by default in the pro
{% highlight c# %}
static void Main()
{
//Register Syncfusion<sup style="font-size:70%">&reg;</sup> license
//Register Syncfusion license
Syncfusion.Licensing.SyncfusionLicenseProvider.RegisterLicense("YOUR LICENSE KEY");

Application.EnableVisualStyles();
Expand Down Expand Up @@ -79,15 +79,15 @@ public partial class App : Application
{
public App()
{
//Register Syncfusion<sup style="font-size:70%">&reg;</sup> license
//Register Syncfusion license
Syncfusion.Licensing.SyncfusionLicenseProvider.RegisterLicense("YOUR LICENSE KEY");
}
}
{% endhighlight %}

{% highlight vb %}
Private Sub New()
'Register Syncfusion<sup style="font-size:70%">&reg;</sup> License
'Register Syncfusion License
Syncfusion.Licensing.SyncfusionLicenseProvider.RegisterLicense("YOUR LICENSE KEY")
End Sub
{% endhighlight %}
Expand All @@ -102,7 +102,7 @@ Register the license key in Application_Start method of **Global.asax.cs/Global.
{% highlight c# %}
void Application_Start(object sender, EventArgs e)
{
//Register Syncfusion<sup style="font-size:70%">&reg;</sup> license
//Register Syncfusion license
Syncfusion.Licensing.SyncfusionLicenseProvider.RegisterLicense("YOUR LICENSE KEY");

// Code that runs on application startup
Expand All @@ -113,7 +113,7 @@ void Application_Start(object sender, EventArgs e)

{% highlight vb %}
Protected Sub Application_Start()
'Syncfusion<sup style="font-size:70%">&reg;</sup> Licensing Register
'Syncfusion Licensing Register
Syncfusion.Licensing.SyncfusionLicenseProvider.RegisterLicense("YOUR LICENSE KEY")
AreaRegistration.RegisterAllAreas()
Register(GlobalConfiguration.Configuration)
Expand All @@ -134,7 +134,7 @@ Register the license key in Configure method of **Startup.cs**
// This method gets called by the runtime. Use this method to configure the HTTP request pipeline.
public void Configure(IApplicationBuilder app, IHostingEnvironment env, ILoggerFactory loggerFactory)
{
//Register Syncfusion<sup style="font-size:70%">&reg;</sup> license
//Register Syncfusion license
Syncfusion.Licensing.SyncfusionLicenseProvider.RegisterLicense("YOUR LICENSE KEY");

loggerFactory.AddConsole(Configuration.GetSection("Logging"));
Expand All @@ -157,7 +157,7 @@ Register the license key in Configure method of **Startup.cs**
// This method gets called by the runtime. Use this method to configure the HTTP request pipeline.
public void Configure(IApplicationBuilder app, IWebHostEnvironment env)
{
//Register Syncfusion<sup style="font-size:70%">&reg;</sup> license
//Register Syncfusion license
Syncfusion.Licensing.SyncfusionLicenseProvider.RegisterLicense("YOUR LICENSE KEY");

if (env.IsDevelopment())
Expand Down Expand Up @@ -194,7 +194,7 @@ Register the license key in the **Program.cs** file if you created the Blazor se
{% tabs %}
{% highlight c# %}
var app = builder.Build();
//Register Syncfusion<sup style="font-size:70%">&reg;</sup> license
//Register Syncfusion license
Syncfusion.Licensing.SyncfusionLicenseProvider.RegisterLicense("YOUR LICENSE KEY");

// Configure the HTTP request pipeline.
Expand All @@ -217,7 +217,7 @@ Register the license key in main method of **Program.cs**
using Syncfusion.Blazor;
public static async Task Main(string[] args)
{
//Register Syncfusion<sup style="font-size:70%">&reg;</sup> license
//Register Syncfusion license
Syncfusion.Licensing.SyncfusionLicenseProvider.RegisterLicense("YOUR LICENSE KEY");
var builder = WebAssemblyHostBuilder.CreateDefault(args);
builder.RootComponents.Add<App>("app");
Expand All @@ -236,7 +236,7 @@ Register the license key in **App.xaml.cs** constructor before InitializeCompone
{% highlight c# %}
public App()
{
//Register Syncfusion<sup style="font-size:70%">&reg;</sup> license
//Register Syncfusion license
Syncfusion.Licensing.SyncfusionLicenseProvider.RegisterLicense("YOUR LICENSE KEY");

this.InitializeComponent();
Expand All @@ -246,7 +246,7 @@ public App()

{% highlight vb %}
Public Sub New()
'Register Syncfusion<sup style="font-size:70%">&reg;</sup> License
'Register Syncfusion License
Syncfusion.Licensing.SyncfusionLicenseProvider.RegisterLicense("YOUR LICENSE KEY")
End Sub

Expand All @@ -268,7 +268,7 @@ public partial class App : Application
{
public App()
{
//Register Syncfusion<sup style="font-size:70%">&reg;</sup> license
//Register Syncfusion license
Syncfusion.Licensing.SyncfusionLicenseProvider.RegisterLicense("YOUR LICENSE KEY");
}
}
Expand All @@ -284,7 +284,7 @@ Register the license key in **App.xaml.cs** constructor before InitializeCompone
{% highlight c# %}
public App()
{
//Register Syncfusion<sup style="font-size:70%">&reg;</sup> license
//Register Syncfusion license
Syncfusion.Licensing.SyncfusionLicenseProvider.RegisterLicense("YOUR LICENSE KEY");

InitializeComponent();
Expand All @@ -307,7 +307,7 @@ If you are using **Prism Framework** in your application, register the license k
{% highlight c# %}
protected override async void OnInitialized()
{
//Register Syncfusion<sup style="font-size:70%">&reg;</sup> license
//Register Syncfusion license
Syncfusion.Licensing.SyncfusionLicenseProvider.RegisterLicense("YOUR LICENSE KEY");

InitializeComponent();
Expand All @@ -325,7 +325,7 @@ Register the license key in **OnCreate** override method of your main activity c
{% highlight c# %}
protected override void OnCreate(Bundle savedInstanceState)
{
//Register Syncfusion<sup style="font-size:70%">&reg;</sup> license
//Register Syncfusion license
Syncfusion.Licensing.SyncfusionLicenseProvider.RegisterLicense("YOUR LICENSE KEY");

base.OnCreate(savedInstanceState);
Expand All @@ -345,7 +345,7 @@ Register the license key in **FinishedLaunching** override method of **AppDelega
{% highlight c# %}
public override bool FinishedLaunching(UIApplication application, NSDictionary launchOptions)
{
//Register Syncfusion<sup style="font-size:70%">&reg;</sup> license
//Register Syncfusion license
Syncfusion.Licensing.SyncfusionLicenseProvider.RegisterLicense("YOUR LICENSE KEY");

// create a new window instance based on the screen size
Expand All @@ -370,7 +370,7 @@ You can register the license key in **App.xaml.cs** constructor before Initializ
{% highlight c# %}
public App()
{
//Register Syncfusion<sup style="font-size:70%">&reg;</sup> license
//Register Syncfusion license
Syncfusion.Licensing.SyncfusionLicenseProvider.RegisterLicense("YOUR LICENSE KEY");

InitializeComponent();
Expand All @@ -391,7 +391,7 @@ Register the license key in the **main method** of your example and import the
import 'package:syncfusion_flutter_core/core.dart';

void main() {
// Register Syncfusion<sup style="font-size:70%">&reg;</sup> license
// Register Syncfusion license
SyncfusionLicense.registerLicense("YOUR LICENSE KEY");
return runApp(MyApp());
}
Expand All @@ -410,7 +410,7 @@ Import ‘syncfusion.licensing' package and register the license key in the **ma
import com.syncfusion.licensing.*;

static void main() {
// Register Syncfusion<sup style="font-size:70%">&reg;</sup> license
// Register Syncfusion license
SyncfusionLicenseProvider.registerLicense("YOUR LICENSE KEY");
}
{% endhighlight %}
Expand All @@ -432,7 +432,7 @@ Register the license key by using **registerLicense** method after the [Syncfusi

{% tabs %}
{% highlight JS %}
// Registering Syncfusion<sup style="font-size:70%">&reg;</sup> license key
// Registering Syncfusion license key
ej.base.registerLicense('License Key');
{% endhighlight %}
{% endtabs %}
Expand All @@ -443,7 +443,7 @@ Register the license key at the entry point of the project before using the Sync

{% tabs %}
{% highlight JS %}
// Registering Syncfusion<sup style="font-size:70%">&reg;</sup> license key
// Registering Syncfusion license key
import { registerLicense } from '@syncfusion/ej2-base';

registerLicense('License key');
Expand All @@ -463,7 +463,7 @@ import { AppModule } from './app/app.module';
import { environment } from './environments/environment';
import { registerLicense } from '@syncfusion/ej2-base';

// Registering Syncfusion<sup style="font-size:70%">&reg;</sup> license key
// Registering Syncfusion license key
registerLicense('License Key');

if (environment.production) {
Expand All @@ -488,7 +488,7 @@ import App from './App';
import reportWebVitals from './reportWebVitals';
import { registerLicense } from '@syncfusion/ej2-base';

// Registering Syncfusion<sup style="font-size:70%">&reg;</sup> license key
// Registering Syncfusion license key
registerLicense('License Key');

ReactDOM.render(
Expand All @@ -510,7 +510,7 @@ import { createApp } from 'vue'
import App from './App.vue'
import { registerLicense } from '@syncfusion/ej2-base';

// Registering Syncfusion<sup style="font-size:70%">&reg;</sup> license key
// Registering Syncfusion license key
registerLicense('License Key');
createApp(App).mount('#app')
{% endhighlight %}
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -135,7 +135,7 @@ pipeline {
{% highlight c# %}
using Syncfusion.Licensing;

//Register Syncfusion<sup style="font-size:70%">&reg;</sup> license key
//Register Syncfusion license key
Syncfusion.Licensing.SyncfusionLicenseProvider.RegisterLicense("YOUR LICENSE KEY");

//Validate the registered license key
Expand Down Expand Up @@ -172,7 +172,7 @@ N> * Place the license key between double quotes. Also, ensure that Syncfusion.L
public void TestSyncfusionWPFLicense()
{
var platform = Platform.WPF;
// Register the Syncfusion<sup style="font-size:70%">&reg;</sup> license key
// Register the Syncfusion license key
SyncfusionLicenseProvider.RegisterLicense("Your License Key");

bool isValidLicense = SyncfusionLicenseProvider.ValidateLicense(platform, out var validationMessage);
Expand Down