Textbox

Textbox Control to add and update Text Box

Slide slide = powerPoint.GetSlideByIndex(0);
shapes3[0].ReplaceTextBox(slide, new TextBox(new G.TextBoxSetting()
	{
		textBlocks = new List<G.TextBlock>(){
			new(){
				text = "Move Slide To ",
				fontFamily = "Bernard MT Condensed"
			},
			new(){
				text = "Prev",
				fontSize = 25,
				isBold = true,
				textColor = "AAAAAA",
				hyperlinkProperties = new(){
					hyperlinkPropertyType = G.HyperlinkPropertyType.PREVIOUS_SLIDE,
				}
			}
		}.ToArray()
	}));

TextBoxSetting Options

TextBlock Options

Last updated