【お知らせ】この部分は英語原文のみでの提供となります。何卒ご了承ください。
2.2.4.20.2 GraphPage::AppendLayers
Contents
Description
Append layers from the specified template to the page.
Syntax
BOOL AppendLayers( LPCSTR lpcszName )
Parameters
- lpcszName
- [input]Template name
Return
Returns TRUE on successful exit and FALSE on failure.
Examples
EX1
int GraphPage_AppendLayers_ex1() { GraphPage gp; gp.Create(); if( gp.IsValid() ) { printf("%s has %d layers\n", gp.GetName(), gp.Layers.Count()); gp.AppendLayers("origin"); printf("Now %s has %d layers\n", gp.GetName(), gp.Layers.Count()); } return 0; }
Remark
Append layers from the specified template to the page.
See Also
Header to Include
origin.h