Hur man tillämpar / ställer in textjustering för textrutan
TextBoxar kan förbättra uttrycksförmågan i våra dokument och diagram, och att tillämpa olika justeringar på olika delar av en TextBox kan hjälpa till att framhäva intressanta punkter för läsarna. Men standardjusteringen i TextBox uppfyller inte alla våra behov. För detta kan du behöva justera varje TextBox för att uppfylla dina önskade krav. Om du inte har många TextBox-objekt att justera har du tur. Om det finns så många TextBoxar att justera tror jag att du kommer att få problem. Oroa dig inte nu, Aspose.Cells tillhandahåller en API-gränssnitt som hjälper dig att göra just det.
Följande kodexempel tillämpar textjustering på en TextBox.
// For complete examples and data files, please go to https://github.com/aspose-cells/Aspose.Cells-for-.NET | |
// The path to the documents directory. | |
string dataDir = ""; | |
if (!System.IO.Directory.Exists(dataDir)) | |
{ | |
System.IO.Directory.CreateDirectory(dataDir); | |
} | |
//Instantiating a Workbook object | |
Workbook workbook = new Workbook(); | |
ShapeCollection shapes = workbook.Worksheets[0].Shapes; | |
//add a TextBox | |
Shape shape = shapes.AddTextBox(2, 0, 2, 0, 50, 120); | |
shape.Text = "This is a test."; | |
//set alignment | |
shape.TextHorizontalAlignment = TextAlignmentType.Center; | |
shape.TextVerticalAlignment = TextAlignmentType.Center; | |
//Save the excel file. | |
workbook.Save(dataDir + "result.xlsx"); |
Du kan också ändra textjusteringen för viss text i en TextBox-form med lämplig HTML-text. Följande kodexempel tillämpar textjustering på del av text i TextBox.
// For complete examples and data files, please go to https://github.com/aspose-cells/Aspose.Cells-for-.NET | |
// Intialize an object of the Workbook class to load template file | |
Workbook sourceWb = new Workbook("SampleTextboxExcel2016.xlsx"); | |
// Access the target textbox whose text is to be aligned | |
var sourceTextBox = sourceWb.Worksheets[0].Shapes[0]; | |
// Create and object of the target workbook | |
var destWb = new Workbook(); | |
// Access first worksheet from the collection | |
var _sheet = destWb.Worksheets[0]; | |
//Create new textbox | |
TextBox _textBox = (TextBox)_sheet.Shapes.AddShape( MsoDrawingType.TextBox,1, 0, 1, 0, 200, 200); | |
// Alternatively text box can be added using following line as well | |
// TextBox _textBox = _sheet.Shapes.AddTextBox(1, 0, 1, 0, 200, 200); | |
// Use Html string from a template file textbox | |
_textBox.HtmlText = sourceTextBox.HtmlText; | |
// Save the workbook on disc | |
destWb.Save("Output.xlsx"); |