コード例 #1
0
 private void IsEditableBox_TextChanged(object sender, EventArgs e)
 {
     // Update the current SOE field.
     m_isEditable = IsEditableBox.Text;
     // Notify ArcCatalog that the properties have changed.
     if (PageSite != null)
     {
         PageSite.PageChanged();
     }
 }
コード例 #2
0
 private void MaxNumFeaturesBox_TextChanged(object sender, EventArgs e)
 {
     // Update the current SOE field.
     m_maxNumFeatures = MaxNumFeaturesBox.Text;
     // Notify ArcCatalog that the properties have changed.
     if (PageSite != null)
     {
         PageSite.PageChanged();
     }
 }
コード例 #3
0
 private void ReturnFormatBox_TextChanged(object sender, EventArgs e)
 {
     // Update the current SOE field.
     m_returnFormat = ReturnFormatBox.Text;
     // Notify ArcCatalog that the properties have changed.
     if (PageSite != null)
     {
         PageSite.PageChanged();
     }
 }
コード例 #4
0
 public PageGeneratorObject(CmsContext context)
 {
     //this.context=context;
     this._site = new PageSite(context.CurrentSite);
 }