Aparentemente o website official já não está disponivel.
Imports FreeTextBoxControls
Partial Class _Default
Inherits System.Web.UI.Page
Protected Sub Page_Load(ByVal sender As Object, ByVal e As System.EventArgs) Handles Me.Load
Dim toolbar1 As New Toolbar()
toolbar1.Items.Add(New ParagraphMenu())
toolbar1.Items.Add(New FontSizesMenu())
FreeTextBox1.Toolbars.Add(toolbar1)
Dim toolbar2 As New Toolbar()
toolbar2.Items.Add(New Bold())
toolbar2.Items.Add(New Italic())
toolbar2.Items.Add(New Underline())
toolbar2.Items.Add(New ToolbarSeparator())
toolbar2.Items.Add(New BulletedList())
toolbar2.Items.Add(New NumberedList())
FreeTextBox1.Toolbars.Add(toolbar2)
End Sub
End Class
propriedade ToolbarLayout:
ParagraphMenu, FontFacesMenu, FontSizesMenu, FontForeColorsMenu
, FontForeColorPicker, FontBackColorsMenu, FontBackColorPicker
, Bold, Italic, Underline, Strikethrough, Superscript, Subscript
, InsertImageFromGallery, CreateLink, Unlink, RemoveFormat
, JustifyLeft, JustifyRight, JustifyCenter, JustifyFull
, BulletedList, NumberedList, Indent, Outdent, Cut, Copy, Paste
, Delete, Undo, Redo, Print, Save, ieSpellCheck, StyleMenu
, SymbolsMenu, InsertHtmlMenu, InsertRule, InsertDate, InsertTime
, WordClean, InsertImage, InsertTable, EditTable, InsertTableRowBefore
, InsertTableRowAfter, DeleteTableRow, InsertTableColumnBefore
, InsertTableColumnAfter, DeleteTableColumn, InsertForm, InsertForm
, InsertTextBox, InsertTextArea, InsertRadioButton, InsertCheckBox
, InsertDropDownList, InsertButton, InsertDiv, InsertImageFromGallery
, Preview, SelectAll, EditStyle.
Nota: Se você for usar o componente para enviar mensagens não esqueça de desabilitar o ValidateRequest definindo na página ASPX o seu valor como false:
<%@ Page Language="VB" AutoEventWireup="false" CodeFile="Default.aspx.vb" Inherits="_Default" validateRequest="false" %>